[llvm] r296421 - [docs] Fix a think-o in the Programmer's Manual.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 27 17:35:32 PST 2017
Author: lhames
Date: Mon Feb 27 19:35:31 2017
New Revision: 296421
URL: http://llvm.org/viewvc/llvm-project?rev=296421&view=rev
Log:
[docs] Fix a think-o in the Programmer's Manual.
Modified:
llvm/trunk/docs/ProgrammersManual.rst
Modified: llvm/trunk/docs/ProgrammersManual.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.rst?rev=296421&r1=296420&r2=296421&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Mon Feb 27 19:35:31 2017
@@ -482,7 +482,7 @@ that inherits from the ErrorInfo utility
}
};
- char FileExists::ID; // This should be declared in the C++ file.
+ char BadFileFormat::ID; // This should be declared in the C++ file.
Error printFormattedFile(StringRef Path) {
if (<check for valid format>)
More information about the llvm-commits
mailing list