From 79904bfe436ca74588dbf673b8d07d7483893f00 Mon Sep 17 00:00:00 2001 From: Andy Pickle Date: Mon, 21 Feb 2022 14:38:17 -0600 Subject: [PATCH] fixing explicitely -> explicitly --- functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.md b/functions.md index 1f9a618..f4b64f1 100644 --- a/functions.md +++ b/functions.md @@ -274,7 +274,7 @@ puts('Hello', 'World') # Also correct in Ruby but less used as its unnec #### When to use parentheses See the [Coding Conventions](coding_conventions.md#parentheses) page for more details. -**tl;dr**: Omit parentheses for anything with keyword status in Ruby and explicitely use parentheses for everything else. +**tl;dr**: Omit parentheses for anything with keyword status in Ruby and explicitly use parentheses for everything else. ### Functions as arguments