Skip to content

Commit

Permalink
Fix target-feature codegen option syntax in rustc man page.
Browse files Browse the repository at this point in the history
The man page stated that the list of features was space-separated when
it's actually comma-separated.
  • Loading branch information
Lionel Flandrin committed Oct 5, 2014
1 parent dfbe9eb commit db087de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions man/rustc.1
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ is invoked.
Selects a target processor. If the value is 'help', then a list of available
CPUs is printed.
.TP
\fBtarget-feature\fR='+feature1 -feature2'
A space-separated list of features to enable or disable for the target. A
\fBtarget-feature\fR='+feature1,-feature2'
A comma-separated list of features to enable or disable for the target. A
preceding '+' enables a feature while a preceding '-' disables it. Available
features can be discovered through target-cpu=help.
.TP
Expand Down

6 comments on commit db087de

@huonw
Copy link
Member

@huonw huonw commented on db087de Oct 5, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r+

Nice catch, thanks!

@bors
Copy link
Contributor

@bors bors commented on db087de Oct 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on db087de Oct 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging simias/rust/master = db087de into auto

@bors
Copy link
Contributor

@bors bors commented on db087de Oct 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

simias/rust/master = db087de merged ok, testing candidate = 78a7676

@bors
Copy link
Contributor

@bors bors commented on db087de Oct 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on db087de Oct 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 78a7676

Please sign in to comment.