diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-03-29 04:07:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 13:07:14 +0200 |
commit | 04520c0ce4ed38a3fbae37731a4979480144c77b (patch) | |
tree | bfbb9e705cae64f5be9b978585105b933e795d3a /doc | |
parent | 89e0e0f27fe937b0eb7386f6f49f4b66f1d27edb (diff) | |
download | Nim-04520c0ce4ed38a3fbae37731a4979480144c77b.tar.gz |
remove std/ prefix from doc/lib.rst now that canonical import is shown in module docs (#17543)
* remove std/ prefix from doc/lib.rst now that canonical import is shown in module docs * cleanup top docs for std/sha1
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lib.rst | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/lib.rst b/doc/lib.rst index 62e02815c..15b4f70d6 100644 --- a/doc/lib.rst +++ b/doc/lib.rst @@ -90,14 +90,14 @@ Algorithms * `algorithm <algorithm.html>`_ This module implements some common generic algorithms like sort or binary search. -* `std/enumutils <enumutils.html>`_ +* `enumutils <enumutils.html>`_ This module adds functionality for the built-in `enum` type. * `sequtils <sequtils.html>`_ This module implements operations for the built-in `seq` type which were inspired by functional programming languages. -* `std/setutils <setutils.html>`_ +* `setutils <setutils.html>`_ This module adds functionality for the built-in `set` type. @@ -125,7 +125,7 @@ Collections * `options <options.html>`_ The option type encapsulates an optional value. -* `std/packedsets <packedsets.html>`_ +* `packedsets <packedsets.html>`_ Efficient implementation of a set of ordinals as a sparse bit set. * `sets <sets.html>`_ @@ -147,7 +147,7 @@ String handling * `cstrutils <cstrutils.html>`_ Utilities for `cstring` handling. -* `std/editdistance <editdistance.html>`_ +* `editdistance <editdistance.html>`_ This module contains an algorithm to compute the edit distance between two Unicode strings. @@ -197,14 +197,14 @@ String handling It provides a single proc that does Unicode to ASCII transliterations. Based on Python's Unidecode module. -* `std/wordwrap <wordwrap.html>`_ +* `wordwrap <wordwrap.html>`_ This module contains an algorithm to wordwrap a Unicode string. Time handling ------------- -* `std/monotimes <monotimes.html>`_ +* `monotimes <monotimes.html>`_ The `monotimes` module implements monotonic timestamps. * `times <times.html>`_ @@ -272,7 +272,7 @@ Math libraries * `random <random.html>`_ Fast and tiny random number generator. -* `std/sysrand <sysrand.html>`_ +* `sysrand <sysrand.html>`_ Cryptographically secure pseudorandom number generator. * `rationals <rationals.html>`_ @@ -281,7 +281,7 @@ Math libraries * `stats <stats.html>`_ Statistical analysis -* `std/sums <sums.html>`_ +* `sums <sums.html>`_ Accurate summation functions. @@ -357,7 +357,7 @@ Parsers * `json <json.html>`_ High-performance JSON parser. -* `std/jsonutils <jsonutils.html>`_ +* `jsonutils <jsonutils.html>`_ This module implements a hookable (de)serialization for arbitrary types. * `lexbase <lexbase.html>`_ @@ -448,7 +448,7 @@ Hashing produce a globally distributed unique ID. This implementation was extracted from the Mongodb interface and it thus binary compatible with a Mongo OID. -* `std/sha1 <sha1.html>`_ +* `sha1 <sha1.html>`_ This module implements a sha1 encoder and decoder. @@ -465,7 +465,7 @@ Miscellaneous * `coro <coro.html>`_ This module implements experimental coroutines in Nim. -* `std/enumerate <enumerate.html>`_ +* `enumerate <enumerate.html>`_ This module implements `enumerate` syntactic sugar based on Nim's macro system. * `logging <logging.html>`_ @@ -480,10 +480,10 @@ Miscellaneous * `unittest <unittest.html>`_ Implements a Unit testing DSL. -* `std/varints <varints.html>`_ +* `varints <varints.html>`_ Decode variable-length integers that are compatible with SQLite. -* `std/with <with.html>`_ +* `with <with.html>`_ This module implements the `with` macro for easy function chaining. |