From 4a269ee4ff24241fb7b4116370dba33a5bc75727 Mon Sep 17 00:00:00 2001 From: Isabelle Viktoria Maciohsek Date: Fri, 10 Jan 2020 13:31:54 +0200 Subject: [PATCH] [FIX] Typo in snake snippet Missing l in examples --- snippets/snake.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/snake.md b/snippets/snake.md index 61ed16432..95f7e745a 100644 --- a/snippets/snake.md +++ b/snippets/snake.md @@ -21,5 +21,5 @@ def snake(s): 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('AllThe-small Things') # "all_the_small_things" ```