Skip to content

Commit 16f4d41

Browse files
Apply suggestions from code review
Co-authored-by: antoyo <antoyo@users.noreply.github.com>
1 parent d0adbbd commit 16f4d41

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ We encourage new contributors to join our communication channels and introduce t
2525

2626
## Understanding Core Concepts
2727

28-
29-
3028
### Sysroot & compilation flags
3129

3230
#### What *is* the sysroot?

build_system/src/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ impl BuildArg {
4545
println!(
4646
r#"
4747
`build` command help:
48-
--release : Build backend in release mode with optimized dependencies without rebuilding sysroot
48+
--release : Build backend in release mode with optimized dependencies
4949
--sysroot : When used on its own, build backend in dev. mode with optimized dependencies
5050
and sysroot in dev. mode (unoptimized)
5151
When used together with --release, build backend in release mode with optimized dependencies
5252
When used together with --release-sysroot,
5353
build the sysroot in release mode with optimized dependencies instead of in dev. mode
5454
--release-sysroot : When combined with --sysroot, additionally
5555
build the sysroot in release mode with optimized dependencies.
56-
When combined with --release, it has no effect.
56+
It has no effect if `--sysroot` is not specified.
5757
It should not be used on its own."#
5858
);
5959
ConfigInfo::show_usage();

0 commit comments

Comments
 (0)