# ProperCase

Returns an input string with the first letter of each word in uppercase and the subsequent letters in lowercase.

```mathematica
ProperCase("hello world") → "Hello World"
ProperCase("New YoRK CIty") → "New York City"
```

#### Inputs

`ProperCase(string)`

* `string` - A text value
