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 | 01fcc0457037d92a70562305d62b3c7f499488ea (patch) | |
tree | 0a5994a1c84e28e4e3c1ecf8178566544044f827 /docs/tutorial | |
parent | 72261ff1ee3fe1fda6a0007fc994c18c4f455219 (diff) |
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43711 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r-- | docs/tutorial/LangImpl2.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorial/LangImpl2.html b/docs/tutorial/LangImpl2.html index 2a0d4870e0..50eed963f6 100644 --- a/docs/tutorial/LangImpl2.html +++ b/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 |