From d0eb179132c60a7c2513c9d19db03e3d5ca00c70 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Sat, 3 Oct 2020 13:19:11 -0700 Subject: docs: end sentences with a period in markdown (#7813) --- std/hash/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'std/hash') diff --git a/std/hash/README.md b/std/hash/README.md index 1716f0ffc..3000cbd05 100644 --- a/std/hash/README.md +++ b/std/hash/README.md @@ -23,7 +23,7 @@ import { createHash } from "https://deno.land/std/hash/mod.ts"; const hash = createHash("md5"); hash.update("Your data here"); -const final = hash.digest(); // returns ArrayBuffer +const final = hash.digest(); // returns ArrayBuffer. ``` Please note that `digest` invalidates the hash instance's internal state. @@ -34,8 +34,8 @@ import { createHash } from "https://deno.land/std/hash/mod.ts"; const hash = createHash("md5"); hash.update("Your data here"); -const final1 = hash.digest(); // returns ArrayBuffer -const final2 = hash.digest(); // throws Error +const final1 = hash.digest(); // returns ArrayBuffer. +const final2 = hash.digest(); // throws Error. ``` If you need final hash in string formats, call `toString` method with output -- cgit v1.2.3