Skip to content

Commit 37c1eb0

Browse files
committed
Doc: Fix use of quote instead of backstick in Adapter::map.
1 parent 2f8d1a8 commit 37c1eb0

File tree

1 file changed

+1
-1
lines changed
  • library/core/src/iter/adapters

1 file changed

+1
-1
lines changed

library/core/src/iter/adapters/map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ use crate::ops::Try;
3838
/// }
3939
/// ```
4040
///
41-
/// This will print "('a', 1), ('b', 2), ('c', 3)".
41+
/// This will print `('a', 1), ('b', 2), ('c', 3)`.
4242
///
4343
/// Now consider this twist where we add a call to `rev`. This version will
4444
/// print `('c', 1), ('b', 2), ('a', 3)`. Note that the letters are reversed,

0 commit comments

Comments
 (0)