From: Douglas Katzman Date: Tue, 2 Jun 2015 22:40:27 +0000 (+0000) Subject: Fix typo in tutorial. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9205728661b8dffc5fe28bda263ea6f06d97cb3b;p=clang Fix typo in tutorial. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@238885 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibASTMatchersTutorial.rst b/docs/LibASTMatchersTutorial.rst index 1e88ec203c..fe36511a0c 100644 --- a/docs/LibASTMatchersTutorial.rst +++ b/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