Skip to content

Commit 698d302

Browse files
cmaglieper1234
andcommitted
Apply suggestions from code review
Co-authored-by: per1234 <[email protected]>
1 parent 64467a3 commit 698d302

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: cli/compile/compile.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ func NewCommand() *cobra.Command {
116116
compileCommand.Flags().BoolVarP(&verify, "verify", "t", false, tr("Verify uploaded binary after the upload."))
117117
compileCommand.Flags().StringVar(&vidPid, "vid-pid", "", tr("When specified, VID/PID specific build properties are used, if board supports them."))
118118
compileCommand.Flags().StringSliceVar(&library, "library", []string{},
119-
tr("Path to a single library’s root folder. Overrides other occurrences of the library found in default libraries folder or passed in via --libraries. Can be used multiple times or entries can be comma separated."))
119+
tr("Path to a single library’s root folder. Can be used multiple times or entries can be comma separated."))
120120
compileCommand.Flags().StringSliceVar(&libraries, "libraries", []string{},
121-
tr("Path to a collection of libraries. Contained libraries override the ones found in the default libraries folder. Can be used multiple times or entries can be comma separated."))
121+
tr("Path to a collection of libraries. Can be used multiple times or entries can be comma separated."))
122122
compileCommand.Flags().BoolVar(&optimizeForDebug, "optimize-for-debug", false, tr("Optional, optimize compile output for debugging, rather than for release."))
123123
programmer.AddToCommand(compileCommand)
124124
compileCommand.Flags().BoolVar(&compilationDatabaseOnly, "only-compilation-database", false, tr("Just produce the compilation database, without actually compiling. All build commands are skipped except pre* hooks."))

0 commit comments

Comments
 (0)