Skip to content

Commit 4f1a619

Browse files
committed
Light spell checking
1 parent 442beff commit 4f1a619

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,31 @@
1414

1515
"cSpell.words": [
1616
"accu",
17+
"alloc",
1718
"binhex",
19+
"Boollike",
1820
"btreemap",
1921
"btreeset",
2022
"chrono",
2123
"clippy",
2224
"codecov",
2325
"concat",
26+
"constgeneric",
2427
"datetime",
2528
"deps",
2629
"Deque",
2730
"deserializable",
2831
"Deserialization",
2932
"Deserializes",
33+
"docsrs",
3034
"elems",
3135
"fromstr",
36+
"hashbrown",
3237
"hasher",
3338
"hashset",
3439
"impls",
3540
"indexmap",
41+
"jsonschema",
3642
"linkedlist",
3743
"markazmierczak",
3844
"Milli",
@@ -41,13 +47,16 @@
4147
"newtype",
4248
"nsecs",
4349
"rustdoc",
50+
"Rustexplorer",
4451
"rustfmt",
4552
"RUSTSEC",
4653
"rustversion",
54+
"schemars",
4755
"serde",
4856
"serde's",
4957
"serializable",
5058
"serializers",
59+
"smoketest",
5160
"struct",
5261
"structs",
5362
"subsec",

serde_with/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ guide = ["dep:doc-comment", "dep:document-features", "macros", "std"]
5454
#! # Features
5555
#!
5656
#! The following features enable support for types from other crates or enable additional functionality, that requires further dependencies to be pulled in.
57-
#! These features are disabled by default to miniminze the amount of required dependencies.
57+
#! These features are disabled by default to minimize the amount of required dependencies.
5858

5959
## The feature enables serializing data in base64 format.
6060
base64 = ["dep:base64", "alloc"]
@@ -63,11 +63,11 @@ chrono = ["chrono_0_4"]
6363
## The feature enables integration of `chrono` v0.4 specific conversions.
6464
## This includes support for the timestamp and duration types.
6565
## More features are available in combination with `alloc` or `std`.
66-
## The legacy feature name `chrono` is still available for v1 compatability.
66+
## The legacy feature name `chrono` is still available for v1 compatibility.
6767
##
6868
## This pulls in `chrono` v0.4 as a dependency.
6969
chrono_0_4 = ["dep:chrono_0_4"]
70-
## The feature enables `hashbown::{HashMap, HashSet}` as supported containers.
70+
## The feature enables `hashbrown::{HashMap, HashSet}` as supported containers.
7171
##
7272
## This pulls in `hashbrown` v0.14 as a dependency.
7373
## It enables the `alloc` feature.
@@ -82,7 +82,7 @@ hex = ["dep:hex", "alloc"]
8282
indexmap = ["indexmap_1"]
8383
## The feature enables implementations of `indexmap` v1 specific checks.
8484
## This includes support for checking duplicate keys and duplicate values.
85-
## The legacy feature name `indexmap` is still available for v1 compatability.
85+
## The legacy feature name `indexmap` is still available for v1 compatibility.
8686
##
8787
## This pulls in `indexmap` v1 as a dependency.
8888
## It enables the `alloc` feature.

serde_with_macros/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ fn field_has_attribute(field: &Field, namespace: &str, name: &str) -> bool {
565565
/// For example, using `#[serde_as(as = "NoneAsEmptyString")]` on `Option<String>` will not see
566566
/// any change.
567567
///
568-
/// If the automatically applied attribute is undesired, the behavior can be supressed by adding
568+
/// If the automatically applied attribute is undesired, the behavior can be suppressed by adding
569569
/// `#[serde_as(no_default)]`.
570570
571571
/// This can be combined like `#[serde_as(as = "Option<S>", no_default)]`.

0 commit comments

Comments
 (0)