From ef65816268c763ff0458b13233af558935a0a18d Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Fri, 25 Jun 2021 23:12:50 +0200 Subject: [PATCH] Fix typo --- source/hello.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/hello.rst b/source/hello.rst index 21d89fb..86ba590 100644 --- a/source/hello.rst +++ b/source/hello.rst @@ -90,7 +90,7 @@ Every function that declares a return type, must end with a ``return`` statement. In this case we add a literal string to the output of ``time.Now().String()`` -Let's look at the documentatation for ``time``. We can see that ``time.Now()`` +Let's look at the documentation for ``time``. We can see that ``time.Now()`` returns an instance of type ``Time``. That instance, in turn, exports a ``String()`` method that unsurprisingly returns a ``string``. Using the addition operator with two strings results in the strings being concatenated.