From 3ccc4f7d06234ad901c0090870b4ec7070caec50 Mon Sep 17 00:00:00 2001
From: reedip <reedip.banerjee@nectechnologies.in>
Date: Fri, 18 Mar 2016 15:27:29 +0900
Subject: [PATCH] Trivial-Fix : Add a ' to the choices documentation

Change-Id: Ic2023e91602fa23512bc5cc9c6a395f2311adb1a
---
 doc/source/command-options.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/source/command-options.rst b/doc/source/command-options.rst
index b723e988a5..b3cc002a48 100644
--- a/doc/source/command-options.rst
+++ b/doc/source/command-options.rst
@@ -100,7 +100,7 @@ An example parser declaration:
 
         choice_option.add_argument(
             '--test',
-            metavar='<test>,
+            metavar='<test>',
             choices=['choice1', 'choice2', 'choice3'],
             help=_('Test type (choice1, choice2 or choice3)'),
         )