From db087de0799c235eeb5ef8b858ee3eb1fe72ae09 Mon Sep 17 00:00:00 2001 From: Lionel Flandrin Date: Sun, 5 Oct 2014 12:59:14 +0200 Subject: [PATCH] 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. --- man/rustc.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/rustc.1 b/man/rustc.1 index 6b7243541c41a..ffa50ef9baac0 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