From: Douglas Katzman Date: Tue, 2 Jun 2015 22:40:27 +0000 (+0000) Subject: Fix typo in tutorial. X-Git-Tag: llvmorg-3.7.0-rc1~3157 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=677324e0b56aef7f43af3da612363f0471833f8d;p=platform%2Fupstream%2Fllvm.git Fix typo in tutorial. llvm-svn: 238885 --- 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