```rust fn slice_not_on_char_boundaries() { let s = "Здравствуйте"; &s[0..1]; } ``` gives ```text thread 'main' panicked at 'index 0 and/or 3 in `Здравствуйте` do not lie on character boundary' ``` To me, "index do not lie" feels weird, should be "does not lie".