diff --git a/yaml.nim b/yaml.nim index 0703b65..a98843b 100644 --- a/yaml.nim +++ b/yaml.nim @@ -10,12 +10,12 @@ ## ## There are three high-level APIs which are probably most useful: ## -## * The serialization API in `serialization `_ enables +## * The serialization API in `serialization `_ enables ## you to load YAML data directly into native Nim types, and reversely dump ## native Nim types as YAML. -## * The DOM API in `dom `_ parses YAML files in a tree structure +## * The DOM API in `dom `_ parses YAML files in a tree structure ## which you can navigate. -## * The JSON API in `tojson `_ parses YAML files into the +## * The JSON API in `tojson `_ parses YAML files into the ## Nim stdlib's JSON structure, which may be useful if you have other modules ## which expect JSON input. Note that the serialization API is able to write ## and load JSON; you do not need the JSON API for that. @@ -24,18 +24,18 @@ ## enables you to process YAML input as data stream which does not need to be ## loaded into RAM completely at once. It consists of the following modules: ## -## * The stream API in `stream `_ defines the central type for +## * The stream API in `stream `_ defines the central type for ## stream processing, ``YamlStream``. It also contains definitions and ## constructor procs for stream events. -## * The parser API in `parser `_ gives you direct access to +## * The parser API in `parser `_ gives you direct access to ## the YAML parser's output. ## * The presenter API in `presenter `_ gives you direct ## access to the presenter, i.e. the module that renders a YAML character ## stream. -## * The taglib API in `taglib `_ provides a data structure +## * The taglib API in `taglib `_ provides a data structure ## for keeping track of YAML tags that are generated by the parser or used in ## the presenter. -## * The hints API in `hints `_ provides a simple proc for +## * The hints API in `hints `_ provides a simple proc for ## guessing the type of a scalar value. import yaml.dom, yaml.hints, yaml.parser, yaml.presenter,