]> gitweb.factorcode.org Git - factor.git/blob - basis/io/encodings/ascii/ascii-docs.factor
docs: change $subsection to $subsections
[factor.git] / basis / io / encodings / ascii / ascii-docs.factor
1 USING: help.markup help.syntax ;
2 IN: io.encodings.ascii
3
4 HELP: ascii
5 { $class-description "ASCII encoding descriptor." } ;
6
7 ARTICLE: "io.encodings.ascii" "ASCII encoding"
8 "By default, if there's a non-ASCII character in an input stream, it will be replaced with a replacement character (U+FFFD), and if a non-ASCII character is used in output, an exception is thrown."
9 { $subsections ascii } ;
10
11 ABOUT: "io.encodings.ascii"