From 76ead087049e7a7e8ec5f229495aa830a4af1d62 Mon Sep 17 00:00:00 2001 From: Riadh Fezzani Date: Tue, 1 Oct 2019 14:46:42 +0200 Subject: [PATCH] Update snippets/snake.md Co-Authored-By: Angelos Chalaris --- snippets/snake.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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