Skip to content

Commit 2b24610

Browse files
authored
Fix typos
1 parent 00c7981 commit 2b24610

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
1313
enable corresponding serde’s features and if either is enabled, `Error`
1414
implements `std::error::Error` trait. By itself, `serde-json-wasm` is now
1515
`no_std`; it’s up to serde’s features whether the entire build is. **Please
16-
not:** this potentially breaks `default-features = false` builds.
16+
note:** this potentially breaks `default-features = false` builds.
1717

1818
- Serialize / deserialize `u128`/`i128` types as numbers instead of strings
1919
([#59]).<br/> **Please note:** this breaks deserialization of `u128`/`i128`

src/de/errors.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub type Result<T> = core::result::Result<T, Error>;
1010
///
1111
/// It implements [`std::error::Error`] trait so long as either `std` or
1212
/// `unstable` features are enabled. `std` is enabled by default and disabling
13-
/// it makes the crate `no_std`. `unstable` makes sit necessary to build code
13+
/// it makes the crate `no_std`. `unstable` makes it necessary to build code
1414
/// with nightly compiler.
1515
#[derive(Debug, PartialEq, Eq)]
1616
#[non_exhaustive]

src/ser/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub type Result<T> = ::core::result::Result<T, Error>;
2020
///
2121
/// It implements [`std::error::Error`] trait so long as either `std` or
2222
/// `unstable` features are enabled. `std` is enabled by default and disabling
23-
/// it makes the crate `no_std`. `unstable` makes sit necessary to build code
23+
/// it makes the crate `no_std`. `unstable` makes it necessary to build code
2424
/// with nightly compiler.
2525
#[derive(Debug)]
2626
#[non_exhaustive]

0 commit comments

Comments
 (0)