mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
Documentation: Fix word usage (#19529)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user