From 558e9237fd7649acbb40a44b0bf1ae3f2117c8a1 Mon Sep 17 00:00:00 2001 From: Brian Campbell Date: Sat, 10 Mar 2018 10:39:33 -0500 Subject: [PATCH] Remove extra "the" (#407) There is an extra word in "the entry point is _the_ called `main`". It's possible that "the entry point is _then_ called `main`" was intended, but it works without the word just as well, so just remove it. --- .../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 a1ba5e0b..3ed5ded7 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 @@ -278,7 +278,7 @@ pub extern fn WinMain() -> ! { We just call `WinMain` from `WinMainCRTStartup` to avoid any ambiguity which function is called. #### macOS -macOS [does not support statically linked binaries], so we have to link the `libSystem` library. The entry point is the called `main`: +macOS [does not support statically linked binaries], so we have to link the `libSystem` library. The entry point is called `main`: [does not support statically linked binaries]: https://developer.apple.com/library/content/qa/qa1118/_index.html