From 677324e0b56aef7f43af3da612363f0471833f8d Mon Sep 17 00:00:00 2001 From: Douglas Katzman Date: Tue, 2 Jun 2015 22:40:27 +0000 Subject: [PATCH] Fix typo in tutorial. llvm-svn: 238885 --- clang/docs/LibASTMatchersTutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/docs/LibASTMatchersTutorial.rst b/clang/docs/LibASTMatchersTutorial.rst index 1e88ec2..fe36511 100644 --- a/clang/docs/LibASTMatchersTutorial.rst +++ b/clang/docs/LibASTMatchersTutorial.rst @@ -169,7 +169,7 @@ You should now be able to run the syntax checker, which is located in .. code-block:: console - cat "int main() { return 0; }" > test.cpp + echo "int main() { return 0; }" > test.cpp bin/loop-convert test.cpp -- Note the two dashes after we specify the source file. The additional -- 2.7.4