]> gitweb.factorcode.org Git - factor.git/commitdiff
docs: fix models-range article link.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 25 Oct 2017 21:59:57 +0000 (14:59 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 25 Oct 2017 21:59:57 +0000 (14:59 -0700)
basis/models/product/product-docs.factor
basis/ui/gadgets/sliders/sliders-docs.factor

index 18a4bc5092b5dcea1bf4d58c9702a2427a704f1f..2462d5c41fb57610990b0f3214c8e0ffcf461986 100644 (file)
@@ -5,7 +5,7 @@ IN: models.product
 HELP: product
 { $class-description "Product model values are computed by collecting the values from a sequence of underlying models into a new sequence. Product models are automatically updated when underlying models change. Product models are constructed by " { $link <product> } "."
 $nl
-"A product model whose children are all " { $link "models-range" } " conforms to the " { $link "range-model-protocol" } " and represents a point in n-dimensional space which is bounded by a rectangle." }
+"A product model whose children are all " { $link "models.range" } " conforms to the " { $link "range-model-protocol" } " and represents a point in n-dimensional space which is bounded by a rectangle." }
 { $examples
     "The following code displays a pair of sliders, and an updating label showing their current values:"
     { $code
index 9856f35c838233e3bb39ace0d77e57485101ab8a..b455beae13ef276ac4514591bf05c0693c3b87ab 100644 (file)
@@ -6,7 +6,7 @@ HELP: elevator
 { $class-description "An elevator is the part of a " { $link slider } " between the up/down arrow buttons, where a " { $link thumb } " may be moved up and down." } ;
 
 HELP: slider
-{ $class-description "A slider is a control for graphically manipulating a " { $link "models-range" } "."
+{ $class-description "A slider is a control for graphically manipulating a " { $link "models.range" } "."
 $nl
 "Sliders are created by calling " { $link <slider> } "." } ;