File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ enum Value {
76
76
77
77
A string of JSON data can be parsed into a ` serde_json::Value ` by the
78
78
[ ` serde_json::from_str ` ] [ from_str ] function. There is also
79
- [ ` from_slice ` ] [ from_slice ] for parsing from a byte slice & \ [ u8\] and
79
+ [ ` from_slice ` ] [ from_slice ] for parsing from a byte slice ` & [u8] ` and
80
80
[ ` from_reader ` ] [ from_reader ] for parsing from any ` io::Read ` like a File or a
81
81
TCP stream.
82
82
Original file line number Diff line number Diff line change 2
2
3
3
//! Precalculated large powers for 32-bit limbs.
4
4
5
- /// Large powers (&[u32]) for base5 operations.
5
+ /// Large powers (` &[u32]` ) for base5 operations.
6
6
const POW5_1 : [ u32 ; 1 ] = [ 5 ] ;
7
7
const POW5_2 : [ u32 ; 1 ] = [ 25 ] ;
8
8
const POW5_3 : [ u32 ; 1 ] = [ 625 ] ;
Original file line number Diff line number Diff line change 2
2
3
3
//! Precalculated large powers for 64-bit limbs.
4
4
5
- /// Large powers (&[u64]) for base5 operations.
5
+ /// Large powers (` &[u64]` ) for base5 operations.
6
6
const POW5_1 : [ u64 ; 1 ] = [ 5 ] ;
7
7
const POW5_2 : [ u64 ; 1 ] = [ 25 ] ;
8
8
const POW5_3 : [ u64 ; 1 ] = [ 625 ] ;
Original file line number Diff line number Diff line change 56
56
//!
57
57
//! A string of JSON data can be parsed into a `serde_json::Value` by the
58
58
//! [`serde_json::from_str`][from_str] function. There is also [`from_slice`]
59
- //! for parsing from a byte slice &\ [u8\] and [`from_reader`] for parsing from
59
+ //! for parsing from a byte slice `& [u8]` and [`from_reader`] for parsing from
60
60
//! any `io::Read` like a File or a TCP stream.
61
61
//!
62
62
//! ```
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ use alloc::string::String;
20
20
use serde:: de:: Visitor ;
21
21
22
22
/// Trait used by the deserializer for iterating over input. This is manually
23
- /// "specialized" for iterating over &[u8]. Once feature(specialization) is
23
+ /// "specialized" for iterating over ` &[u8]` . Once feature(specialization) is
24
24
/// stable we can use actual specialization.
25
25
///
26
26
/// This trait is sealed and cannot be implemented for types outside of
You can’t perform that action at this time.
0 commit comments