about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLionel Flandrin <lionel.flandrin@parrot.com>2014-10-05 12:59:14 +0200
committerLionel Flandrin <lionel.flandrin@parrot.com>2014-10-05 13:06:33 +0200
commitdb087de0799c235eeb5ef8b858ee3eb1fe72ae09 (patch)
tree4fbae358207b26dfe059a7e01e63864a40e14eae
parentdfbe9eb3b24fdc7ea5c78f96fedec6630476dec7 (diff)
downloadrust-db087de0799c235eeb5ef8b858ee3eb1fe72ae09.tar.gz
rust-db087de0799c235eeb5ef8b858ee3eb1fe72ae09.zip
Fix target-feature codegen option syntax in rustc man page.
The man page stated that the list of features was space-separated when
it's actually comma-separated.
-rw-r--r--man/rustc.14
1 files changed, 2 insertions, 2 deletions
diff --git a/man/rustc.1 b/man/rustc.1
index 6b7243541c4..ffa50ef9baa 100644
--- a/man/rustc.1
+++ b/man/rustc.1
@@ -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