diff --git a/snippet_template.md b/snippet_template.md index 2cc4e2a68..f1cf31008 100644 --- a/snippet_template.md +++ b/snippet_template.md @@ -1,15 +1,15 @@ -### functionName +### function_name Describe briefly what the function does Explain your method and the functions used. ``` python -def functionName(args): +def function_name(args): # code return 0 ``` ``` python -functionName(val) # result -``` \ No newline at end of file +function_name(val) # result +```