From 74d2ae518acd91456be2ce71a41ae1c77dda7454 Mon Sep 17 00:00:00 2001 From: Swastik Baranwal Date: Fri, 15 May 2020 17:05:33 +0530 Subject: [PATCH] docs: fix typo --- doc/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docs.md b/doc/docs.md index 18d24cb03d..e0bce98a88 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -349,7 +349,7 @@ fn main() { } ``` -Modules can be imported using keyword `import`. When using types, functions, and constants from other modules, the full path must be specified. In the example above, `name := get_line()` wouldn't work. That means that it's always clear from which module a function is called +Modules can be imported using keyword `import`. When using types, functions, and constants from other modules, the full path must be specified. In the example above, `name := input()` wouldn't work. That means that it's always clear from which module a function is called ## Arrays