Skip to content

Commit c674fc7

Browse files
committed
fixed doc typos
1 parent 18f7a9c commit c674fc7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,22 +43,22 @@
4343
//!
4444
//! ### String Codecs
4545
//!
46-
//! Please have look at the module [`string`](crate::string).
46+
//! Please have a look at the module [`string`](crate::string).
4747
//!
4848
//! #### Adapters
4949
//!
5050
//! - [`string::Base64`] —
51-
//! Wraps a binary codec and make it a string codec by representing the binary data as a base64 string.
51+
//! Wraps a binary codec and makes it a string codec by representing the binary data as a base64 string.
5252
//! - [`string::OptionCodec`] —
5353
//! Wraps a string codec that encodes `T` to create a codec that encodes `Option<T>`.
5454
//!
5555
//! ### Binary Codecs
5656
//!
57-
//! Please have look at the module [`binary`](crate::binary).
57+
//! Please have a look at the module [`binary`](crate::binary).
5858
//!
5959
//! ## Custom Codecs
6060
//!
61-
//! If you don't find a suitable codecs for your needs, you can implement your own; it's straightforward!
61+
//! If you don't find a suitable codec for your needs, you can implement your own; it's straightforward!
6262
//! If you want to create a string codec, you can look at [`string::JsonSerdeCodec`] as a starting point.
6363
//! In case it's a binary codec, have a look at [`binary::BincodeSerdeCodec`].
6464
//!
@@ -67,7 +67,7 @@
6767
//! Versioning is the process of handling long-term data that can outlive our code.
6868
//!
6969
//! For example, we could have a settings struct whose members change over time. We might eventually
70-
//! add timezone support, and we might then remove support for a thousands separator for numbers.
70+
//! add timezone support, and we might then remove support for a thousand separator for numbers.
7171
//! Each change results in a new possible version of the stored data. If we stored these settings
7272
//! in browser storage, we would need to handle all possible versions of the data format that can
7373
//! occur. If we don't offer versioning, then all settings could revert to the default every time we

0 commit comments

Comments
 (0)