From 05b09f6b4fb0a66939db968234d872caa3031701 Mon Sep 17 00:00:00 2001 From: rfezzani Date: Mon, 30 Sep 2019 23:18:39 +0200 Subject: [PATCH] Fix comments --- snippets/snake.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/snippets/snake.md b/snippets/snake.md index f6ea75ac7..48dde2233 100644 --- a/snippets/snake.md +++ b/snippets/snake.md @@ -16,8 +16,8 @@ def snake(str): ``` ```py -snake('camelCase'); # 'camel-case' -snake('some text'); # 'some-text' -snake('some-mixed_string With spaces_underscores-and-hyphens'); # 'some-mixed-string-with-spaces-underscores-and-hyphens' -snake('AllThe-small Things'); # "all-the-smal-things" +snake('camelCase'); # 'camel_case' +snake('some text'); # 'some_text' +snake('some-mixed_string With spaces_underscores-and-hyphens'); # 'some_mixed_string_with_spaces_underscores_and_hyphens' +snake('AllThe-small Things'); # "all_the_smal_things" ```