diff --git a/snippets/snake.md b/snippets/snake.md index fcbfd763d..10065206b 100644 --- a/snippets/snake.md +++ b/snippets/snake.md @@ -5,7 +5,7 @@ tags: string,regexp,intermediate Converts a string to snake case. -Break the string into words and combine them adding underscore `_` as a separator, using a regexp. +Break the string into words and combine them adding `_` as a separator, using a regexp. ```py import re