From b88b17aca5334cedb16f42637d83f53ea7bacdb5 Mon Sep 17 00:00:00 2001 From: RotoDhoulmagus <1429029+RotoDhoulmagus@users.noreply.github.com> Date: Mon, 2 Aug 2021 12:11:03 +0800 Subject: [PATCH] docs: fix a typo in the Module import aliasing section (#11017) --- doc/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docs.md b/doc/docs.md index 44cfdcb461..8fbaa2dba8 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -1145,7 +1145,7 @@ import crypto.sha256 import mymod.sha256 as mysha256 fn main() { - v_hash := mysha256.sum('hi'.bytes()).hex() + v_hash := sha256.sum('hi'.bytes()).hex() my_hash := mysha256.sum('hi'.bytes()).hex() assert my_hash == v_hash }