diff options
author | Hans Wennborg <hans@hanshq.net> | 2013-07-18 21:00:12 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2013-07-18 21:00:12 +0000 |
commit | 894fd78d93d663df8286d4d4edeafc076e00ff15 (patch) | |
tree | e81b10624313bd33e2bcc068c9332ae3304eec53 /include/llvm | |
parent | 13c9cf1d5158d704546494f4b4851e5c9f09573f (diff) | |
download | external_llvm-894fd78d93d663df8286d4d4edeafc076e00ff15.zip external_llvm-894fd78d93d663df8286d4d4edeafc076e00ff15.tar.gz external_llvm-894fd78d93d663df8286d4d4edeafc076e00ff15.tar.bz2 |
Fix -Wdocumentation warning
s/Tokenize/Tokenizer/ to make the comment correspond to the
parameter name
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186608 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Support/CommandLine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index 8fb4630..c0bfbae 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -1792,7 +1792,7 @@ typedef void (*TokenizerCallback)(StringRef Source, StringSaver &Saver, /// before expansion and will be modified in place. /// /// \param [in] Saver Delegates back to the caller for saving parsed strings. -/// \param [in] Tokenize Tokenization strategy. Typically Unix or Windows. +/// \param [in] Tokenizer Tokenization strategy. Typically Unix or Windows. /// \param [in,out] Argv Command line into which to expand response files. /// \return true if all @files were expanded successfully or there were none. bool ExpandResponseFiles(StringSaver &Saver, TokenizerCallback Tokenizer, |