]> git.lizzy.rs Git - rust.git/commitdiff
Fix target-feature codegen option syntax in rustc man page.
authorLionel Flandrin <lionel.flandrin@parrot.com>
Sun, 5 Oct 2014 10:59:14 +0000 (12:59 +0200)
committerLionel Flandrin <lionel.flandrin@parrot.com>
Sun, 5 Oct 2014 11:06:33 +0000 (13:06 +0200)
The man page stated that the list of features was space-separated when
it's actually comma-separated.

man/rustc.1

index 6b7243541c41afb0f10f129b2367ba6dbf84ae35..ffa50ef9baac016f570283cb07925e82d99768eb 100644 (file)
@@ -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