*-docs: replace double spaces with single spaces

Code examples and other places where multiple spaces were used to align
text were left intact.
modern-harvey2
Alexander Iljin 2017-06-05 20:13:54 +03:00 committed by John Benediktsson
parent 445b55b3e5
commit 2ffa446f5b
96 changed files with 138 additions and 137 deletions

View File

@ -67,7 +67,8 @@ HELP: define-persistent
{ $description "Defines a relation from a Factor " { $snippet "tuple class" } " to a SQL database table name. The format for the slot specifiers is as follows:"
{ $list
{ "a slot name from the " { $snippet "tuple class" } }
{ "the name of a database column that maps to the slot" } { "a database type (see " { $link "db.types" } ")" }
{ "the name of a database column that maps to the slot" }
{ "a database type (see " { $link "db.types" } ")" }
} "Throws an error if the slot name (column one from each row) is not a slot in the tuple or its superclases." }
{ $examples
{ $code "USING: db.tuples db.types ;"