Skip to content

Commit

Permalink
Light spell checking
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbb committed Jan 20, 2024
1 parent 442beff commit 4f1a619
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,31 @@

"cSpell.words": [
"accu",
"alloc",
"binhex",
"Boollike",
"btreemap",
"btreeset",
"chrono",
"clippy",
"codecov",
"concat",
"constgeneric",
"datetime",
"deps",
"Deque",
"deserializable",
"Deserialization",
"Deserializes",
"docsrs",
"elems",
"fromstr",
"hashbrown",
"hasher",
"hashset",
"impls",
"indexmap",
"jsonschema",
"linkedlist",
"markazmierczak",
"Milli",
Expand All @@ -41,13 +47,16 @@
"newtype",
"nsecs",
"rustdoc",
"Rustexplorer",
"rustfmt",
"RUSTSEC",
"rustversion",
"schemars",
"serde",
"serde's",
"serializable",
"serializers",
"smoketest",
"struct",
"structs",
"subsec",
Expand Down
8 changes: 4 additions & 4 deletions serde_with/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ guide = ["dep:doc-comment", "dep:document-features", "macros", "std"]
#! # Features
#!
#! The following features enable support for types from other crates or enable additional functionality, that requires further dependencies to be pulled in.
#! These features are disabled by default to miniminze the amount of required dependencies.
#! These features are disabled by default to minimize the amount of required dependencies.

## The feature enables serializing data in base64 format.
base64 = ["dep:base64", "alloc"]
Expand All @@ -63,11 +63,11 @@ chrono = ["chrono_0_4"]
## The feature enables integration of `chrono` v0.4 specific conversions.
## This includes support for the timestamp and duration types.
## More features are available in combination with `alloc` or `std`.
## The legacy feature name `chrono` is still available for v1 compatability.
## The legacy feature name `chrono` is still available for v1 compatibility.
##
## This pulls in `chrono` v0.4 as a dependency.
chrono_0_4 = ["dep:chrono_0_4"]
## The feature enables `hashbown::{HashMap, HashSet}` as supported containers.
## The feature enables `hashbrown::{HashMap, HashSet}` as supported containers.
##
## This pulls in `hashbrown` v0.14 as a dependency.
## It enables the `alloc` feature.
Expand All @@ -82,7 +82,7 @@ hex = ["dep:hex", "alloc"]
indexmap = ["indexmap_1"]
## The feature enables implementations of `indexmap` v1 specific checks.
## This includes support for checking duplicate keys and duplicate values.
## The legacy feature name `indexmap` is still available for v1 compatability.
## The legacy feature name `indexmap` is still available for v1 compatibility.
##
## This pulls in `indexmap` v1 as a dependency.
## It enables the `alloc` feature.
Expand Down
2 changes: 1 addition & 1 deletion serde_with_macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ fn field_has_attribute(field: &Field, namespace: &str, name: &str) -> bool {
/// For example, using `#[serde_as(as = "NoneAsEmptyString")]` on `Option<String>` will not see
/// any change.
///
/// If the automatically applied attribute is undesired, the behavior can be supressed by adding
/// If the automatically applied attribute is undesired, the behavior can be suppressed by adding
/// `#[serde_as(no_default)]`.
/// This can be combined like `#[serde_as(as = "Option<S>", no_default)]`.
Expand Down

0 comments on commit 4f1a619

Please sign in to comment.