Documentation: Fix word usage (#19529)

This commit is contained in:
Sizhe Zhao
2022-02-15 06:15:59 +08:00
committed by GitHub
parent 2ef71c0a46
commit b2c5d7b4ff
5 changed files with 8 additions and 8 deletions

View File

@@ -446,7 +446,7 @@ Hashing
from the MongoDB interface and it thus binary compatible with a MongoDB OID.
* `sha1 <sha1.html>`_
This module implements a sha1 encoder and decoder.
This module implements the SHA-1 checksum algorithm.
Miscellaneous

View File

@@ -56,8 +56,8 @@ runnableExamples:
## ========
##
## * `hashes module<hashes.html>`_ for efficient computations of hash values for diverse Nim types
## * `md5 module<md5.html>`_ implements the MD5 checksum algorithm
## * `sha1 module<sha1.html>`_ implements a sha1 encoder and decoder
## * `md5 module<md5.html>`_ for the MD5 checksum algorithm
## * `sha1 module<sha1.html>`_ for the SHA-1 checksum algorithm
template cbBase(a, b): untyped = [
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',

View File

@@ -62,7 +62,7 @@ runnableExamples:
## ========
## * `md5 module <md5.html>`_ for the MD5 checksum algorithm
## * `base64 module <base64.html>`_ for a Base64 encoder and decoder
## * `std/sha1 module <sha1.html>`_ for a SHA-1 encoder and decoder
## * `std/sha1 module <sha1.html>`_ for the SHA-1 checksum algorithm
## * `tables module <tables.html>`_ for hash tables
import std/private/since

View File

@@ -13,8 +13,8 @@
##
## See also
## ========
## * `base64 module<base64.html>`_ implements a Base64 encoder and decoder
## * `std/sha1 module <sha1.html>`_ for a SHA-1 encoder and decoder
## * `base64 module<base64.html>`_ for a Base64 encoder and decoder
## * `std/sha1 module <sha1.html>`_ for the SHA-1 checksum algorithm
## * `hashes module<hashes.html>`_ for efficient computations of hash values
## for diverse Nim types

View File

@@ -12,9 +12,9 @@
##
## See also
## ========
## * `base64 module<base64.html>`_ implements a Base64 encoder and decoder
## * `base64 module<base64.html>`_ for a Base64 encoder and decoder
## * `hashes module<hashes.html>`_ for efficient computations of hash values for diverse Nim types
## * `md5 module<md5.html>`_ implements the MD5 checksum algorithm
## * `md5 module<md5.html>`_ for the MD5 checksum algorithm
runnableExamples:
let accessName = secureHash("John Doe")