Skip to content

Commit 761f376

Browse files
committed
Doc: Fix use of quote instead of backstick in Adapter::map.
1 parent 16a3393 commit 761f376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/iter/adapters/map.rs

Lines changed: 1 addition & 1 deletion
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)