From 0836515690d7be6d996019f2bacbd26f3306a715 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 19 Feb 2019 10:50:20 +0100 Subject: [PATCH] [Doc] Change docstring of camel-case-to-snake-case --- configuration.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.org b/configuration.org index 9576c48..f1a46f6 100644 --- a/configuration.org +++ b/configuration.org @@ -316,11 +316,11 @@ member of the pair." (forward-char)))) #+END_SRC -*** Convert camelCase to snake_case +*** Convert ~camelCase~ to ~snake_case~ #+BEGIN_SRC emacs-lisp (defun camel-to-snake-case (arg) - "Convert a camel case (camelCase or CamelCase) word to snake case (snake_case). + "Convert a camelCase word to snake_case. If the prefix argument ARG is non-nil, convert the text to uppercase." (interactive "p")