diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-05 17:38:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-05 17:38:34 +0000 |
commit | 3a39ad630adef8253d9e48c93920d33aaee152d3 (patch) | |
tree | 3c5722758316dd92430bff5d704bfb14d82b9225 /llvm/docs/tutorial | |
parent | 31b789c0d85f7b5392a3dcd4a3a7fb4471f5be95 (diff) | |
download | bcm5719-llvm-3a39ad630adef8253d9e48c93920d33aaee152d3.tar.gz bcm5719-llvm-3a39ad630adef8253d9e48c93920d33aaee152d3.zip |
fix typo
llvm-svn: 43711
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/LangImpl2.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/tutorial/LangImpl2.html b/llvm/docs/tutorial/LangImpl2.html index 2a0d4870e01..50eed963f6b 100644 --- a/llvm/docs/tutorial/LangImpl2.html +++ b/llvm/docs/tutorial/LangImpl2.html @@ -739,12 +739,12 @@ example, here is a sample interaction:</p> <pre> $ ./a.out ready> def foo(x y) x+foo(y, 4.0); -ready> Parsed an function definition. +ready> Parsed a function definition. ready> def foo(x y) x+y y; -ready> Parsed an function definition. +ready> Parsed a function definition. ready> Parsed a top-level expr ready> def foo(x y) x+y ); -ready> Parsed an function definition. +ready> Parsed a function definition. ready> Error: unknown token when expecting an expression ready> extern sin(a); ready> Parsed an extern |