Function: s-titleize

s-titleize is a byte-compiled function defined in s.el.

Signature

(s-titleize S)

Documentation

Convert in S each word's first character to upper and the rest to lower case.

This is a simple wrapper around the built-in capitalize.

Source Code

;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-titleize (s)
  "Convert in S each word's first character to upper and the rest to lower case.

This is a simple wrapper around the built-in `capitalize'."
  (declare (side-effect-free t))
  (capitalize s))