You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
70: Grammar fixes r=adamgreig a=robyoung
Mostly minor grammar fixes and grammar consistency improvements.
Co-authored-by: Rob Young <[email protected]>
Copy file name to clipboardExpand all lines: src/main.md
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -36,13 +36,12 @@ We also drop the `#![no_main]` attribute as it has no effect on library crates.
36
36
37
37
> There's an orthogonal question that arises at this stage: Should the `rt`
38
38
> library provide a standard panicking behavior, or should it *not* provide a
39
-
> `#[panic_handler]` function and leave the end user choose the panicking
39
+
> `#[panic_handler]` function and leave the end user to choose the panicking
40
40
> behavior? This document won't delve into that question and for simplicity will
41
41
> leave the dummy `#[panic_handler]` function in the `rt` crate. However, we
42
42
> wanted to inform the reader that there are other options.
43
43
44
-
The second change involves providing the linker script we wrote before to the application crate. You
45
-
see the linker will search for linker scripts in the library search path (`-L`) and in the directory
44
+
The second change involves providing the linker script we wrote before to the application crate. The linker will search for linker scripts in the library search path (`-L`) and in the directory
46
45
from which it's invoked. The application crate shouldn't need to carry around a copy of `link.x` so
47
46
we'll have the `rt` crate put the linker script in the library search path using a [build script].
0 commit comments