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.
This commit is contained in:
Brian Campbell
2018-03-10 10:39:33 -05:00
committed by Philipp Oppermann
parent f4acd176b8
commit 558e9237fd

View File

@@ -278,7 +278,7 @@ pub extern fn WinMain() -> ! {
We just call `WinMain` from `WinMainCRTStartup` to avoid any ambiguity which function is called. We just call `WinMain` from `WinMainCRTStartup` to avoid any ambiguity which function is called.
#### macOS #### 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 [does not support statically linked binaries]: https://developer.apple.com/library/content/qa/qa1118/_index.html