Skip to content

Commit 130c977

Browse files
authored
Merge pull request #276 from soenkehahn/patch-1
fix typo
2 parents d171f8e + 8cb29e4 commit 130c977

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ macro_rules! suffixed_int_literals {
989989
/// This function will create an integer like `1u32` where the integer
990990
/// value specified is the first part of the token and the integral is
991991
/// also suffixed at the end. Literals created from negative numbers may
992-
/// not survive rountrips through `TokenStream` or strings and may be
992+
/// not survive roundtrips through `TokenStream` or strings and may be
993993
/// broken into two tokens (`-` and positive literal).
994994
///
995995
/// Literals created through this method have the `Span::call_site()`
@@ -1010,7 +1010,7 @@ macro_rules! unsuffixed_int_literals {
10101010
/// specified on this token, meaning that invocations like
10111011
/// `Literal::i8_unsuffixed(1)` are equivalent to
10121012
/// `Literal::u32_unsuffixed(1)`. Literals created from negative numbers
1013-
/// may not survive rountrips through `TokenStream` or strings and may
1013+
/// may not survive roundtrips through `TokenStream` or strings and may
10141014
/// be broken into two tokens (`-` and positive literal).
10151015
///
10161016
/// Literals created through this method have the `Span::call_site()`

0 commit comments

Comments
 (0)