Remove unneeded ```rust from rustdoc

This commit is contained in:
David Tolnay 2019-04-30 01:20:42 -07:00
parent 26e8defc8d
commit 26dcb96645
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ pub fn fmt<W: fmt::Write, V: Integer>(mut wr: W, value: V) -> fmt::Result {
/// ///
/// # Example /// # Example
/// ///
/// ```rust /// ```
/// let mut buffer = itoa::Buffer::new(); /// let mut buffer = itoa::Buffer::new();
/// let printed = buffer.format(1234); /// let printed = buffer.format(1234);
/// assert_eq!(printed, "1234"); /// assert_eq!(printed, "1234");