]> gitweb.factorcode.org Git - factor.git/commitdiff
docs: replace $description with $class-description for class words
authorAlexander Iljin <ajsoft@yandex.ru>
Thu, 28 Jul 2016 17:39:43 +0000 (20:39 +0300)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 30 Jul 2016 16:25:30 +0000 (09:25 -0700)
15 files changed:
basis/bit-arrays/bit-arrays-docs.factor
basis/bit-vectors/bit-vectors-docs.factor
basis/http/server/dispatchers/dispatchers-docs.factor
basis/http/server/filters/filters-docs.factor
basis/http/server/server-docs.factor
core/arrays/arrays-docs.factor
core/byte-arrays/byte-arrays-docs.factor
core/byte-vectors/byte-vectors-docs.factor
core/hashtables/hashtables-docs.factor
core/quotations/quotations-docs.factor
core/sbufs/sbufs-docs.factor
core/strings/strings-docs.factor
core/vectors/vectors-docs.factor
core/words/symbol/symbol-docs.factor
core/words/words-docs.factor

index 304a33d5a83ac4696967c6e1459c280869cb7551..3cf59394b7b25aba64474ebfa72fa92776196c2d 100644 (file)
@@ -40,7 +40,7 @@ HELP: ?{
 { $examples { $code "?{ t f t }" } } ;
 
 HELP: bit-array
-{ $description "The class of fixed-length bit arrays." } ;
+{ $class-description "The class of fixed-length bit arrays." } ;
 
 HELP: <bit-array>
 { $values { "n" "a non-negative integer" } { "bit-array" "a new " { $link bit-array } } }
index 6cea3a00ddbd6616bdc936606897bdbb3eaa2776..eb931aa18cfcb7da8d76cfdc99b37ce81cae1378 100644 (file)
@@ -22,7 +22,7 @@ $nl
 ABOUT: "bit-vectors"
 
 HELP: bit-vector
-{ $description "The class of resizable bit vectors. See " { $link "bit-vectors" } " for information." } ;
+{ $class-description "The class of resizable bit vectors. See " { $link "bit-vectors" } " for information." } ;
 
 HELP: <bit-vector>
 { $values { "capacity" "a positive integer specifying initial capacity" } { "vector" bit-vector } }
index 3b965574f6b29662b2faae1dc117ee7eb09c3117..b13774753d2bca0f09d9f374d16d62aae7734d92 100644 (file)
@@ -8,14 +8,14 @@ HELP: new-dispatcher
 { $description "Creates a new instance of a subclass of " { $link dispatcher } "." } ;
 
 HELP: dispatcher
-{ $description "The class of dispatchers. May be subclassed, in which case subclasses should be constructed by calling " { $link new-dispatcher } "." } ;
+{ $class-description "The class of dispatchers. May be subclassed, in which case subclasses should be constructed by calling " { $link new-dispatcher } "." } ;
 
 HELP: <dispatcher>
 { $values { "dispatcher" dispatcher } }
 { $description "Creates a new pathname dispatcher." } ;
 
 HELP: vhost-dispatcher
-{ $description "The class of virtual host dispatchers." } ;
+{ $class-description "The class of virtual host dispatchers." } ;
 
 HELP: <vhost-dispatcher>
 { $values { "dispatcher" vhost-dispatcher } }
index d05971a39fcaa1dac02d5fec0d14543f5d015ebf..3e8781d6504c9e563d70b5f35ee9ad69a89ebb05 100644 (file)
@@ -2,7 +2,7 @@ USING: help.markup help.syntax http.server ;
 IN: http.server.filters
 
 HELP: filter-responder
-{ $description "The class of filter responders. This class is intended to be subclassed." } ;
+{ $class-description "The class of filter responders. This class is intended to be subclassed." } ;
 
 ARTICLE: "http.server.filters" "HTTP responder filters"
 "The " { $vocab-link "http.server.filters" } " vocabulary implements the common pattern where one responder wraps another, doing some processing before calling the wrapped responder."
index 0efe818872fbda127114dcb68e4004ac764ecc54..be09e235a61c75286a5e8da53b5f436419ff314d 100644 (file)
@@ -4,7 +4,7 @@ USE: html.forms ! needed for $link in param
 IN: http.server
 
 HELP: trivial-responder
-{ $description "The class of trivial responders, which output the same response for every request. New instances are created by calling " { $link <trivial-responder> } "." } ;
+{ $class-description "The class of trivial responders, which output the same response for every request. New instances are created by calling " { $link <trivial-responder> } "." } ;
 
 HELP: <trivial-responder>
 { $values { "response" response } { "trivial-responder" trivial-responder } }
index d71649ef6c989d89c869a45a2eb7aca2f71f323f..3c778e0f43735da2840a8e1de475cd0f68b229da 100644 (file)
@@ -43,7 +43,7 @@ $nl
 ABOUT: "arrays"
 
 HELP: array
-{ $description "The class of fixed-length arrays. See " { $link "syntax-arrays" } " for syntax and " { $link "arrays" } " for general information." } ;
+{ $class-description "The class of fixed-length arrays. See " { $link "syntax-arrays" } " for syntax and " { $link "arrays" } " for general information." } ;
 
 HELP: <array>
 { $values { "n" "a non-negative integer" } { "elt" "an initial element" } { "array" "a new array" } }
index eeb0832af8597c3f8fa72896fb608283a5c60563..581699ce889c73bc62b66e5fd8ca82f033ff267c 100644 (file)
@@ -28,7 +28,7 @@ $nl
 ABOUT: "byte-arrays"
 
 HELP: byte-array
-{ $description "The class of byte arrays. See " { $link "syntax-byte-arrays" } " for syntax and " { $link "byte-arrays" } " for general information." } ;
+{ $class-description "The class of byte arrays. See " { $link "syntax-byte-arrays" } " for syntax and " { $link "byte-arrays" } " for general information." } ;
 
 HELP: <byte-array>
 { $values { "n" "a non-negative integer" } { "byte-array" "a new byte array" } }
index 72e3741e72cd5d2cc384a6340ceb717cf07ea901..159a449b9dd142e4942cc40a30670f2093f95146 100644 (file)
@@ -22,7 +22,7 @@ $nl
 ABOUT: "byte-vectors"
 
 HELP: byte-vector
-{ $description "The class of resizable byte vectors. See " { $link "byte-vectors" } " for information." } ;
+{ $class-description "The class of resizable byte vectors. See " { $link "byte-vectors" } " for information." } ;
 
 HELP: <byte-vector>
 { $values { "n" "a positive integer specifying initial capacity" } { "byte-vector" byte-vector } }
index 2a71345be4d5ea38ac4201234f3662391a630a84..25df26b7faf9210d01512cd433473c5c2b3d4002 100644 (file)
@@ -58,7 +58,7 @@ ARTICLE: "hashtables.utilities" "Hashtable utilities"
 ABOUT: "hashtables"
 
 HELP: hashtable
-{ $description "The class of hashtables. See " { $link "syntax-hashtables" } " for syntax and " { $link "hashtables" } " for general information." } ;
+{ $class-description "The class of hashtables. See " { $link "syntax-hashtables" } " for syntax and " { $link "hashtables" } " for general information." } ;
 
 HELP: hash@
 { $values { "key" "a key" } { "array" "the underlying array of a hashtable" } { "i" "the index to begin hashtable search" } }
index edd79846cddbb9e96e2f1c9ee6696469c62cbc74..fa5308c4e1ae8429a8343713191543dde8301e6b 100644 (file)
@@ -45,7 +45,7 @@ HELP: callable
 { $class-description "The class whose instances can be passed to " { $link call } ". This includes quotations and composed quotations built up with " { $link curry } " or " { $link compose } "." } ;
 
 HELP: quotation
-{ $description "The class of quotations. See " { $link "syntax-quots" } " for syntax and " { $link "quotations" } " for general information." } ;
+{ $class-description "The class of quotations. See " { $link "syntax-quots" } " for syntax and " { $link "quotations" } " for general information." } ;
 
 HELP: >quotation
 { $values { "seq" sequence } { "quot" quotation } }
@@ -61,7 +61,7 @@ HELP: 1quotation
 } ;
 
 HELP: wrapper
-{ $description "The class of wrappers. Wrappers are created by calling " { $link literalize } ". See " { $link "syntax-words" } " for syntax." } ;
+{ $class-description "The class of wrappers. Wrappers are created by calling " { $link literalize } ". See " { $link "syntax-words" } " for syntax." } ;
 
 HELP: <wrapper>
 { $values { "obj" object } { "wrapper" wrapper } }
index badf27fa3526ec99c491cbc456bc729e696d4f85..24765b1a70fb16b25a7c31eb3062b2ef19411e9b 100644 (file)
@@ -23,7 +23,7 @@ $nl
 ABOUT: "sbufs"
 
 HELP: sbuf
-{ $description "The class of resizable character strings. See " { $link "syntax-sbufs" } " for syntax and " { $link "sbufs" } " for general information." } ;
+{ $class-description "The class of resizable character strings. See " { $link "syntax-sbufs" } " for syntax and " { $link "sbufs" } " for general information." } ;
 
 HELP: <sbuf>
 { $values { "n" "a positive integer specifying initial capacity" } { "sbuf" sbuf } }
index 17fa4ab8c438274f4a12db897fe641d70930d006..0f9af8258a2b7f41fd0c22c2bc8951f267c62105 100644 (file)
@@ -27,7 +27,7 @@ $nl
 ABOUT: "strings"
 
 HELP: string
-{ $description "The class of fixed-length character strings. See " { $link "syntax-strings" } " for syntax and " { $link "strings" } " for general information." } ;
+{ $class-description "The class of fixed-length character strings. See " { $link "syntax-strings" } " for syntax and " { $link "strings" } " for general information." } ;
 
 HELP: string-nth
 { $values { "n" fixnum } { "string" string } { "ch" "the character at the " { $snippet "n" } "th index" } }
index 615a52c6374e12f3039e849e3e695e2c9cf03285..2bab954214d69c20c47a3721283318b264e1d0be 100644 (file)
@@ -28,7 +28,7 @@ $nl
 ABOUT: "vectors"
 
 HELP: vector
-{ $description "The class of resizable vectors. See " { $link "syntax-vectors" } " for syntax and " { $link "vectors" } " for general information." } ;
+{ $class-description "The class of resizable vectors. See " { $link "syntax-vectors" } " for syntax and " { $link "vectors" } " for general information." } ;
 
 HELP: <vector>
 { $values { "n" "a positive integer specifying initial capacity" } { "vector" vector } }
index 28fc81c6f93333ac918bc23c33d5289862163ef0..51b0f9d218c68292932e751b33c296314498320a 100644 (file)
@@ -2,7 +2,7 @@ USING: help.syntax help.markup words.symbol words compiler.units ;
 IN: words.symbol
 
 HELP: symbol
-{ $description "The class of symbols created by " { $link POSTPONE: SYMBOL: } "." } ;
+{ $class-description "The class of symbols created by " { $link POSTPONE: SYMBOL: } "." } ;
 
 HELP: define-symbol
 { $values { "word" word } }
index 799b8a886a5404fa0ff231c6d12b01d2e3ad8fa2..f9beeba3b295ed34378f21cfad3154f78b30e736 100644 (file)
@@ -245,7 +245,7 @@ HELP: undefined
 } ;
 
 HELP: primitive
-{ $description "The class of primitive words." } ;
+{ $class-description "The class of primitive words." } ;
 
 HELP: word-prop
 { $values { "word" word } { "name" "a property name" } { "value" "a property value" } }