From 5156307617533c78d08e8a24188a87f2dfc9d342 Mon Sep 17 00:00:00 2001 From: DemoYeti <164791169+DemoYeti@users.noreply.github.com> Date: Tue, 13 Aug 2024 13:36:03 -0400 Subject: [PATCH] chore: fix grammar in `Cargo.toml` --- engine-types/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine-types/Cargo.toml b/engine-types/Cargo.toml index f0f29aa26..04d06b52f 100644 --- a/engine-types/Cargo.toml +++ b/engine-types/Cargo.toml @@ -26,7 +26,7 @@ rand.workspace = true [features] default = ["std"] std = ["borsh/std", "hex/std", "primitive-types/std", "primitive-types/serde", "serde/std", "serde_json/std", "rlp/std"] -# `primitive-types/std` is excluded because its `std` implementation includes a transitive +# `primitive-types/std` is excluded because it's `std` implementation includes a transitive # dependency on `getrandom` which uses OS call to obtain entropy. Such calls are not # available in Wasm, therefore we cannot use the `std` implementation of `primitive-types` # in other Rust contracts.