Skip to content

Commit 16244b8

Browse files
committed
reference: make that less awkward to read
1 parent 07ca1ab commit 16244b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3935,7 +3935,7 @@ found in the [ffi section of the book][ffi].
39353935

39363936
In one session of compilation, the compiler can generate multiple artifacts
39373937
through the usage of either command line flags or the `crate_type` attribute.
3938-
If one or more command line flag is specified, all `crate_type` attributes will
3938+
If one or more command line flags are specified, all `crate_type` attributes will
39393939
be ignored in favor of only building the artifacts specified by command line.
39403940

39413941
* `--crate-type=bin`, `#[crate_type = "bin"]` - A runnable executable will be
@@ -3981,7 +3981,7 @@ Note that these outputs are stackable in the sense that if multiple are
39813981
specified, then the compiler will produce each form of output at once without
39823982
having to recompile. However, this only applies for outputs specified by the
39833983
same method. If only `crate_type` attributes are specified, then they will all
3984-
be built, but if one or more `--crate-type` command line flag is specified,
3984+
be built, but if one or more `--crate-type` command line flags are specified,
39853985
then only those outputs will be built.
39863986

39873987
With all these different kinds of outputs, if crate A depends on crate B, then

0 commit comments

Comments
 (0)