time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (380B)


      1 
      2 {{alias}}( str )
      3     Capitalizes the first letter of each word in an input `string`.
      4 
      5     Parameters
      6     ----------
      7     str: string
      8         Input string.
      9 
     10     Returns
     11     -------
     12     out: string
     13         String containing words where each first letter is capitalized.
     14 
     15     Examples
     16     --------
     17     > var out = {{alias}}( 'beep boop' )
     18     'Beep Boop'
     19 
     20     See Also
     21     --------
     22