Updated How to ask for help (markdown)
diff --git a/How-to-ask-for-help.md b/How-to-ask-for-help.md
index b3472e7..4648b98 100644
--- a/How-to-ask-for-help.md
+++ b/How-to-ask-for-help.md
@@ -8,7 +8,7 @@
 
 Always check all errors. It is common to see problems reported with panics due to nil panics due to code line this
 ```
-result, err := someFunction()
+result, err := somefunction()
 if err != nil {
       log.Println("oops an error happened", err)
       // return is missing here