From 03c1d203566d94924d4c17778b0451a61686c11d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ce=CC=81dric=20Luthi?= Date: Sat, 19 May 2018 16:02:43 +0200 Subject: [PATCH] Use "fully qualified name" instead of "FQN" abbreviation --- ICSharpCode.Decompiler.Console/Program.cs | 2 +- ICSharpCode.Decompiler.Console/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ICSharpCode.Decompiler.Console/Program.cs b/ICSharpCode.Decompiler.Console/Program.cs index 3c3a724fa..c154267c7 100644 --- a/ICSharpCode.Decompiler.Console/Program.cs +++ b/ICSharpCode.Decompiler.Console/Program.cs @@ -22,7 +22,7 @@ namespace ICSharpCode.Decompiler.Console var inputAssemblyFileName = app.Argument("Assembly filename name", "The assembly that is being decompiled. This argument is mandatory."); var projectOption = app.Option("-p|--project", "Decompile assembly as compilable project. This requires the output directory option.", CommandOptionType.NoValue); var outputOption = app.Option("-o|--outputdir ", "The output directory, if omitted decompiler output is written to standard out.", CommandOptionType.SingleValue); - var typeOption = app.Option("-t|--type ", "The FQN of the type to decompile.", CommandOptionType.SingleValue); + var typeOption = app.Option("-t|--type ", "The fully qualified name of the type to decompile.", CommandOptionType.SingleValue); var listOption = app.Option("-l|--list ", "Lists all entities of the specified type(s). Valid types: c(lass), i(interface), s(truct), d(elegate), e(num)", CommandOptionType.MultipleValue); app.ExtendedHelpText = Environment.NewLine + "-o is valid with every option and required when using -p."; diff --git a/ICSharpCode.Decompiler.Console/README.md b/ICSharpCode.Decompiler.Console/README.md index 5d590a88d..8fea10f48 100644 --- a/ICSharpCode.Decompiler.Console/README.md +++ b/ICSharpCode.Decompiler.Console/README.md @@ -13,7 +13,7 @@ Options: -h|--help Show help information -p|--project Decompile assembly as compilable project. This requires the output directory option. -o|--outputdir The output directory, if omitted decompiler output is written to standard out. - -t|--type The FQN of the type to decompile. + -t|--type The fully qualified name of the type to decompile. -l|--list Lists all entities of the specified type(s). Valid types: c(lass), i(interface), s(truct), d(elegate), e(num)