Fix help for kicad-cli pcb export pos --side

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15815
This commit is contained in:
Stefan 2024-05-06 13:36:42 +00:00 committed by Mark Roszko
parent 05b2b3c26e
commit 030a251090
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ CLI::PCB_EXPORT_POS_COMMAND::PCB_EXPORT_POS_COMMAND() : PCB_EXPORT_BASE_COMMAND(
m_argParser.add_argument( ARG_SIDE )
.default_value( std::string( "both" ) )
.help( UTF8STDSTR( _(
"Valid options: front,back,both. Gerber format only supports \"both\"." ) ) );
.help( UTF8STDSTR( _( "Valid options: front,back,both. Gerber format only supports "
"\"front\" or \"back\"." ) ) );
m_argParser.add_argument( ARG_FORMAT )
.default_value( std::string( "ascii" ) )