From 52cec041d09776207f352f35c3b437a5f678050b Mon Sep 17 00:00:00 2001 From: Andrew Date: Sun, 10 Jul 2022 23:06:24 -0400 Subject: [PATCH] Update function names Follow best practices (function should be snake case [do_task()], and methods should be camel case [doTask()]) --- hack.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hack.html.markdown b/hack.html.markdown index 8e2d4b19..95fd9b52 100644 --- a/hack.html.markdown +++ b/hack.html.markdown @@ -79,14 +79,14 @@ namespace LearnHackinYMinutes { // Use `arraykey` to represent either an integer or string. $the_answer = 42; - $is_answer = processKey($the_answer); + $is_answer = process_key($the_answer); // Similarily, `num` represents either an int or float. $lucky_number = 7; $lucky_square = calculate_square($lucky_number); } - function processKey(arraykey $the_answer): bool { + function process_key(arraykey $the_answer): bool { if ($the_answer is int) { return true; } else { @@ -217,7 +217,7 @@ namespace LearnHackinYMinutes { // As another example, `__Memoize` caches the result of a function. <<__Memoize>> - function doExpensiveTask(): ?string { + function do_expensive_task(): ?string { // return file_get_contents('http://hacklang.org'); return "dynamic string with contents from hacklang.org"; }