Function: s-titleized-words

s-titleized-words is a byte-compiled function defined in s.el.

Signature

(s-titleized-words S)

Documentation

Convert S to Titleized Words.

Source Code

;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-titleized-words (s)
  "Convert S to Titleized Words."
  (declare (side-effect-free t))
  (s-join " " (mapcar 's-titleize (s-split-words s))))