STYLE: fix docs: it must replace "find_path" instead of "FIND_PATH" with
"find_file", otherwise the docs talk about find_path() instead of find_file (patch from Michael Wild, #9047) Alex
This commit is contained in:
parent
55c4cbbae9
commit
97516244f5
|
@ -21,7 +21,7 @@ cmFindFileCommand::cmFindFileCommand()
|
||||||
{
|
{
|
||||||
this->IncludeFileInPath = true;
|
this->IncludeFileInPath = true;
|
||||||
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
||||||
"FIND_PATH", "find_file");
|
"find_path", "find_file");
|
||||||
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
||||||
"directory containing the named file",
|
"directory containing the named file",
|
||||||
"full path to named file");
|
"full path to named file");
|
||||||
|
|
Loading…
Reference in New Issue