]> gitweb.factorcode.org Git - factor.git/commitdiff
models: change some article names.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 25 Oct 2017 19:10:51 +0000 (12:10 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 25 Oct 2017 19:10:51 +0000 (12:10 -0700)
basis/models/delay/delay-docs.factor
basis/models/models-docs.factor
basis/models/range/range-docs.factor
extra/models/history/history-docs.factor

index 0e2d94be317a4d999424a6c92aa3b08a3c2de1e5..5dae55224d9204090e43f7c6361091996ceeb1ce 100644 (file)
@@ -28,11 +28,11 @@ HELP: <delay>
 { $description "Creates a new instance of " { $link delay } ". The timeout must elapse from the time the underlying model last changed to when the delay model value is changed and its connections are notified." }
 { $examples "See the example in the documentation for " { $link delay } "." } ;
 
-ARTICLE: "models-delay" "Delay models"
+ARTICLE: "models.delay" "Delay models"
 "Delay models are used to implement delayed updating of gadgets in response to user input."
 { $subsections
     delay
     <delay>
 } ;
 
-ABOUT: "models-delay"
+ABOUT: "models.delay"
index ce152d84034eea5025662c5cbee9d8ba4caa42db..614e407e37d02e501a94ceef996b1c6efc4e0271 100644 (file)
@@ -156,8 +156,8 @@ $nl
     "models-impl"
     "models.arrow"
     "models.product"
-    "models-range"
-    "models-delay"
+    "models.range"
+    "models.delay"
 } ;
 
 ARTICLE: "models-impl" "Implementing models"
index b04aab369a26e64aa57f6dde83a457a6df19397d..ec9f8c082058b1cdbea9fa70ab298935048b604e 100644 (file)
@@ -40,7 +40,7 @@ HELP: move-by-page
 { $description "Adds a multiple of the page size to a range model's current value." }
 { $side-effects "range" } ;
 
-ARTICLE: "models-range" "Range models"
+ARTICLE: "models.range" "Range models"
 "Range models ensure their value is a real number within a fixed range."
 { $subsections
     range
@@ -63,4 +63,4 @@ ARTICLE: "range-model-protocol" "Range model protocol"
     set-range-max-value
 } ;
 
-ABOUT: "models-range"
+ABOUT: "models.range"
index 953c9cc5b3c10230eddb9ac8e34b5c775fd03d2e..54b0086cbe26b78f265c2bebaeaa3a5c661ed3a7 100644 (file)
@@ -23,7 +23,7 @@ HELP: add-history
 { $values { "history" history } }
 { $description "Adds the current value to the history." } ;
 
-ARTICLE: "models-history" "History models"
+ARTICLE: "models.history" "History models"
 "History models record previous values."
 { $subsections
     history
@@ -37,4 +37,4 @@ ARTICLE: "models-history" "History models"
     go-forward
 } ;
 
-ABOUT: "models-history"
+ABOUT: "models.history"