Fixing spacing in the sets docs

db4
Daniel Ehrenberg 2010-03-16 21:30:17 -04:00
parent 5e20190bc5
commit 7fcc03b8b6
1 changed files with 4 additions and 4 deletions

View File

@ -15,9 +15,9 @@ ABOUT: "sets"
ARTICLE: "set-operations" "Operations on sets" ARTICLE: "set-operations" "Operations on sets"
"To test if an object is a member of a set:" "To test if an object is a member of a set:"
{ $subsection member? } { $subsections member? }
"All sets can be represented as a sequence, without duplicates, of their members:" "All sets can be represented as a sequence, without duplicates, of their members:"
{ $subsection members } { $subsections members }
"Sets can have members added or removed destructively:" "Sets can have members added or removed destructively:"
{ $subsections { $subsections
adjoin adjoin
@ -36,9 +36,9 @@ ARTICLE: "set-operations" "Operations on sets"
set= set=
} }
"An optional generic word for creating sets of the same class as a given set:" "An optional generic word for creating sets of the same class as a given set:"
{ $subsection set-like } { $subsections set-like }
"An optional generic word for creating a set with a fast lookup operation, if the set itself has a slow lookup operation:" "An optional generic word for creating a set with a fast lookup operation, if the set itself has a slow lookup operation:"
{ $subsection fast-set } { $subsections fast-set }
"For set types that allow duplicates, like sequence sets, some additional words test for duplication:" "For set types that allow duplicates, like sequence sets, some additional words test for duplication:"
{ $subsections { $subsections
all-unique? all-unique?