Skip to content

Commit

Permalink
Fix a typo in the deprecated message
Browse files Browse the repository at this point in the history
Just removed redundant `use`.
  • Loading branch information
y-yagi committed Feb 12, 2023
1 parent fa008c0 commit 16e73f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/r_string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ impl RString {
}

#[doc(hidden)]
#[deprecated(since = "0.5.0", note = "please use use `buf_append` instead")]
#[deprecated(since = "0.5.0", note = "please use `buf_append` instead")]
pub fn append(self, other: Self) -> Result<(), Error> {
self.buf_append(other)
}
Expand Down

0 comments on commit 16e73f7

Please sign in to comment.