diff options
author | Felix Yan <felixonmars@archlinux.org> | 2020-08-06 14:25:51 (GMT) |
---|---|---|
committer | Felix Yan <felixonmars@archlinux.org> | 2020-08-06 14:25:51 (GMT) |
commit | 5dd710286fc96519c69471451a1d72d5cb1818f2 (patch) | |
tree | ad4fa1d960f695354ca0996e6eb3d361bbbd57f7 | |
parent | 9d03b623e7049a4a197531cadb1ebae3de1d1e64 (diff) | |
download | CMake-5dd710286fc96519c69471451a1d72d5cb1818f2.zip CMake-5dd710286fc96519c69471451a1d72d5cb1818f2.tar.gz CMake-5dd710286fc96519c69471451a1d72d5cb1818f2.tar.bz2 |
Correct a typo in cmFileCommand.cxx
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 9db8b85..8d20d35 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -2937,7 +2937,7 @@ bool HandleConfigureCommand(std::vector<std::string> const& args, } fout.SetCopyIfDifferent(true); - // copy intput to output and expand variables from input at the same time + // copy input to output and expand variables from input at the same time std::stringstream sin(input, std::ios::in); std::string inLine; std::string outLine; |