From 2a7024fa6c0b260d5d0bdf606a268405e86cf5ce Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 11 Apr 2011 03:27:31 +0000 Subject: [PATCH] docs/CommandLine.html: "ize. llvm-svn: 129267 --- llvm/docs/CommandLine.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/llvm/docs/CommandLine.html b/llvm/docs/CommandLine.html index e21ea8042d5f..83b2ebbe5115 100644 --- a/llvm/docs/CommandLine.html +++ b/llvm/docs/CommandLine.html @@ -231,11 +231,11 @@ represented like this:

cl::opt<string> OutputFilename("o", cl::desc("Specify output filename"), cl::value_desc("filename")); -

This declares a global variable "OutputFilename" that is used to -capture the result of the "o" argument (first parameter). We specify -that this is a simple scalar option by using the "cl::opt" template (as opposed to the "cl::list template), and tell the CommandLine library +

This declares a global variable "OutputFilename" that is used to +capture the result of the "o" argument (first parameter). We specify +that this is a simple scalar option by using the "cl::opt" template (as opposed to the "cl::list template), and tell the CommandLine library that the data type that we are parsing is a string.

The second and third parameters (which are optional) are used to specify what