From 292e9b8baec323f9bd16d7a7803380f0fcb15839 Mon Sep 17 00:00:00 2001 From: Hamza elkhatri <40549481+Hamzaelkhatri@users.noreply.github.com> Date: Fri, 17 Jun 2022 19:42:33 +0100 Subject: [PATCH] Update README.md --- subjects/cameltosnakecase/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subjects/cameltosnakecase/README.md b/subjects/cameltosnakecase/README.md index ac9c1ed5..a7dd3bda 100644 --- a/subjects/cameltosnakecase/README.md +++ b/subjects/cameltosnakecase/README.md @@ -6,6 +6,8 @@ Write a function that converts a string from a camel case to a snake case. - If the string is empty, return an empty string. - If the string is not a camel case, return the string unchanged. - If the string is a camel case, return the snake case version of the string. +- Camel case is the practice of writing phrases without spaces or punctuation, It indicates the separation of words with a single capitalized letter +- Snake case is a style of writing in which each space is replaced by an underscore (_) character. ### Expected function ```go