From dfa7d9c895607a5f46af0201ed8a79d4ae7f985b Mon Sep 17 00:00:00 2001 From: Chris White Date: Tue, 2 Mar 2021 12:27:23 -0500 Subject: [PATCH] doc/site/functions Fn.new() clarification [minor] (#931) In the description of Fn.new(): - Fix a typo - Add the referent of "that" for clarity --- doc/site/functions.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/site/functions.markdown b/doc/site/functions.markdown index 6d10982d..de9616d8 100644 --- a/doc/site/functions.markdown +++ b/doc/site/functions.markdown @@ -72,8 +72,8 @@ var someFn = Fn.new { } -As you can see it takes a block argument too! All the constructor does it -return that, so this exists purely as a convenience method for you. +As you can see it takes a block argument too! All the constructor does is +return that argument, so this exists purely as a convenience method for you. ## Calling functions