From b0d18c735b6b2ce115a247f324c804b1f48dc193 Mon Sep 17 00:00:00 2001 From: Donald Pinckney Date: Mon, 9 Jul 2018 01:12:01 +0800 Subject: [PATCH] Very small pluralization grammar fix in post 01 (#454) --- .../second-edition/posts/01-freestanding-rust-binary/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/01-freestanding-rust-binary/index.md b/blog/content/second-edition/posts/01-freestanding-rust-binary/index.md index a7c5831b..2050e237 100644 --- a/blog/content/second-edition/posts/01-freestanding-rust-binary/index.md +++ b/blog/content/second-edition/posts/01-freestanding-rust-binary/index.md @@ -108,7 +108,7 @@ Now the compiler is missing some _language items_. Language items are special pl Providing our own implementation of the language items would be possible, but this should only be done as a last resort. The reason is that language items are highly unstable implementation details and not even type checked (so the compiler doesn't even check if it has the right argument types). -Fortunately, there are more stable ways to fix these language item error. +Fortunately, there are more stable ways to fix these language item errors. ### Disabling Unwinding