Skip to content

Commit c0cbfb7

Browse files
Apply suggestions from code review
Co-authored-by: Daniel Egger <daniel@eggers-club.de>
1 parent e4b1afd commit c0cbfb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/custom-target.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ that describes your target to rustc.
66
Keep in mind that it is required to use a nightly compiler to build the core library, which must be
77
done for a target unknown to rustc.
88

9-
## Decide on a target triple
9+
## Deciding on a target triple
1010

1111
Many targets already have a known triple used to describe them, typically in the form
1212
ARCH-VENDOR-SYS-ABI. You should aim to use the same triple that [LLVM uses][llvm-target-triple];
@@ -19,7 +19,7 @@ example, you would probably use x86_64 for those processors, but specify the exa
1919
version. Typical values might be `armv7`, `armv5te`, or `thumbv7neon`. Take a look at the names of
2020
the [built-in targets][built-in-target] for inspiration.
2121

22-
The VENDOR part is optional, and describes the manufacturer. Omitting this field is the same as
22+
The VENDOR part is optional and describes the manufacturer. Omitting this field is the same as
2323
using `unknown`.
2424

2525
The SYS part describes the OS that is used. Typical values include `win32`, `linux`, and `darwin`

0 commit comments

Comments
 (0)