about summary refs log tree commit diff
path: root/src/doc/book/strings.md
AgeCommit message (Collapse)AuthorLines
2017-02-13Port TRPL to mdbookSteve Klabnik-195/+0
1. move everything under a src directory 2. add README.md to the SUMMARY.md
2016-11-30Use more specific panic message for &str slicing errorsUlrik Sverdrup-2/+2
Separate out of bounds errors from character boundary errors, and print more details for character boundary errors. Example: &"abcαβγ"[..4] thread 'str::test_slice_fail_boundary_1' panicked at 'byte index 4 is not a char boundary; it is inside `α` (bytes 3..5) of `abcαβγ`'
2016-11-13Improved punctuation, capitalization, and sentence structure of code snippet ↵Angelo Polo-3/+3
comments
2016-06-15Correct use of 'nul' 'null' and capitalizationAlexander Merritt-1/+1
r? @steveklabnik
2016-05-22Rename main thread from "<main>" to "main".Wangshan Lu-1/+1
Fix issue #33789
2016-05-09rustdoc: remove artificial indentation of doctest codeGeorg Brandl-1/+1
This makes the examples look nicer when printed (when is this done?), but breaks tests using multi-line string literals. Fixes: #25944
2016-03-25Add note on `str` being an unsized type in strings section of book.Alejandro Wainzinger-0/+6
2016-03-12Fix minor typos in doc.rust-lang.org/bookAndrew Cantino-2/+2
2016-02-14doc: Remove trailing whitespacefbergr-1/+1
2016-01-09Remove many instances of 'just'Steve Klabnik-1/+1
Doing so is considered weaker writing. Thanks @Charlotteis! Fixes #28810
2015-11-19src/doc/trpl -> src/doc/bookSteve Klabnik-0/+189
The book was located under 'src/doc/trpl' because originally, it was going to be hosted under that URL. Late in the game, before 1.0, we decided that /book was a better one, so we changed the output, but not the input. This causes confusion for no good reason. So we'll change the source directory to look like the output directory, like for every other thing in src/doc.