File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ enum Value {
7676
7777A string of JSON data can be parsed into a ` serde_json::Value ` by the
7878[ ` 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
8080[ ` from_reader ` ] [ from_reader ] for parsing from any ` io::Read ` like a File or a
8181TCP stream.
8282
Original file line number Diff line number Diff line change 22
33//! Precalculated large powers for 32-bit limbs.
44
5- /// Large powers (&[u32]) for base5 operations.
5+ /// Large powers (` &[u32]` ) for base5 operations.
66const POW5_1 : [ u32 ; 1 ] = [ 5 ] ;
77const POW5_2 : [ u32 ; 1 ] = [ 25 ] ;
88const POW5_3 : [ u32 ; 1 ] = [ 625 ] ;
Original file line number Diff line number Diff line change 22
33//! Precalculated large powers for 64-bit limbs.
44
5- /// Large powers (&[u64]) for base5 operations.
5+ /// Large powers (` &[u64]` ) for base5 operations.
66const POW5_1 : [ u64 ; 1 ] = [ 5 ] ;
77const POW5_2 : [ u64 ; 1 ] = [ 25 ] ;
88const POW5_3 : [ u64 ; 1 ] = [ 625 ] ;
Original file line number Diff line number Diff line change 5656//!
5757//! A string of JSON data can be parsed into a `serde_json::Value` by the
5858//! [`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
6060//! any `io::Read` like a File or a TCP stream.
6161//!
6262//! ```
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ use alloc::string::String;
2020use serde:: de:: Visitor ;
2121
2222/// 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
2424/// stable we can use actual specialization.
2525///
2626/// This trait is sealed and cannot be implemented for types outside of
You can’t perform that action at this time.
0 commit comments