Punctuation to appease syntax highlighter

This commit is contained in:
David Tolnay 2018-03-18 00:18:12 -07:00
parent c1c4f7320e
commit e3af30b7c4
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 2 additions and 2 deletions

View File

@ -43,9 +43,9 @@ println!("{}", s);
The function signatures are: The function signatures are:
```rust ```rust
fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize> fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
``` ```
where `itoa::Integer` is implemented for `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, where `itoa::Integer` is implemented for `i8`, `u8`, `i16`, `u16`, `i32`, `u32`,