[`trim_chars`](http://doc.rust-lang.org/std/str/trait.StrSlice.html#tymethod.trim_chars) only trims characters from the ends but that is not clear from the documentation. ``` rust // Not obvious from the description why this doesn't work "hello world".trim_char(' '); ```