From cff5ec26fd40620411f8ceadedc7ad514ad82a87 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 25 Oct 1999 15:38:58 +0000 Subject: [PATCH] Fixed small typos and slightly outdated comments. --- tools/find_debug_channels | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/find_debug_channels b/tools/find_debug_channels index ac6d741e612..71273960886 100755 --- a/tools/find_debug_channels +++ b/tools/find_debug_channels @@ -2,13 +2,13 @@ # # This script scans the whole source code for symbols of the form # 'xxx(yyy' where: -# xxx is either TRACE, WARN, ERR or WARN +# xxx is either DECLARE_DEBUG_CHANNEL or DEFAULT_DEBUG_CHANNEL # yyy is a C identifier # It outputs on the standard output a sorted list of the # yyy identifiers found in the .c files. # Each identifier is reported once. Header files are not scanned. # -# The script can be given an argument that specify the files to be +# The script can be given an argument that specifies the files to be # searched according to the following scheme: # - if the argument does not contain a slash (/), the script # will search the tree rooted in the current directory for @@ -19,7 +19,7 @@ # searched # - if no argument is given, the argument defaults to "*.c" # that is, all C files are searched. -# - if more than a argument is given, only the listed files are +# - if more than one argument is given, only the listed files are # searched. Note that in this case, the script will not # attempt to find them in some subdirectories, but rather # it will try to open them in the current directory.