[FIX] Typo in snake snippet
Missing l in examples
This commit is contained in:
committed by
GitHub
parent
f9423050b6
commit
4a269ee4ff
@ -21,5 +21,5 @@ def snake(s):
|
|||||||
snake('camelCase') # 'camel_case'
|
snake('camelCase') # 'camel_case'
|
||||||
snake('some text') # 'some_text'
|
snake('some text') # 'some_text'
|
||||||
snake('some-mixed_string With spaces_underscores-and-hyphens') # 'some_mixed_string_with_spaces_underscores_and_hyphens'
|
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"
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user