From 767b4b7c97a1b4733daf2468c78f76d1c1d96bde Mon Sep 17 00:00:00 2001 From: "blythe%netscape.com" Date: Fri, 18 Oct 2002 20:28:49 +0000 Subject: [PATCH] Not part of build. fix command line option spelling git-svn-id: svn://10.0.0.236/trunk@132260 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/tools/codesighs/codesighs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/tools/codesighs/codesighs.c b/mozilla/tools/codesighs/codesighs.c index a8a9a41c707..754dc9e66e9 100644 --- a/mozilla/tools/codesighs/codesighs.c +++ b/mozilla/tools/codesighs/codesighs.c @@ -119,7 +119,7 @@ static Switch gMaxSize = {"--max-size", "-max", 1, NULL, "Only consider symbols static Switch gMatchScope = {"--match-scope", "-msco", 1, NULL, "Only consider scopes that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify a range of scopes," DESC_NEWLINE "though PUBLIC, STATIC, and UNDEF are your only choices."}; static Switch gMatchClass = {"--match-class", "-mcla", 1, NULL, "Only consider classes that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify a range of classes," DESC_NEWLINE "though CODE and DATA are your only choices."}; static Switch gMatchModule = {"--match-module", "-mmod", 1, NULL, "Only consider modules that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of modules."}; -static Switch gMatchSection = {"--match-sections", "-msec", 1, NULL, "Only consider sections that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of sections." DESC_NEWLINE "Section is considered symbol type."}; +static Switch gMatchSection = {"--match-section", "-msec", 1, NULL, "Only consider sections that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of sections." DESC_NEWLINE "Section is considered symbol type."}; static Switch gMatchObject = {"--match-object", "-mobj", 1, NULL, "Only consider objects that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of objects."}; static Switch gMatchSymbol = {"--match-symbol", "-msym", 1, NULL, "Only consider symbols that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of symbols."};