From 01c43e6cac2f364cc77e1696239da391a51745f7 Mon Sep 17 00:00:00 2001 From: Rohit Tanwar <31792358+kriadmin@users.noreply.github.com> Date: Sun, 21 Jan 2018 12:36:02 +0530 Subject: [PATCH] Change to snake_case --- snippet_template.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 +```