summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-05 17:38:34 +0000
committerChris Lattner <sabre@nondot.org>2007-11-05 17:38:34 +0000
commit01fcc0457037d92a70562305d62b3c7f499488ea (patch)
tree0a5994a1c84e28e4e3c1ecf8178566544044f827 /docs
parent72261ff1ee3fe1fda6a0007fc994c18c4f455219 (diff)
downloadllvm-01fcc0457037d92a70562305d62b3c7f499488ea.tar.gz
llvm-01fcc0457037d92a70562305d62b3c7f499488ea.tar.bz2
llvm-01fcc0457037d92a70562305d62b3c7f499488ea.tar.xz
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43711 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorial/LangImpl2.html6
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&gt; def foo(x y) x+foo(y, 4.0);
-ready&gt; Parsed an function definition.
+ready&gt; Parsed a function definition.
ready&gt; def foo(x y) x+y y;
-ready&gt; Parsed an function definition.
+ready&gt; Parsed a function definition.
ready&gt; Parsed a top-level expr
ready&gt; def foo(x y) x+y );
-ready&gt; Parsed an function definition.
+ready&gt; Parsed a function definition.
ready&gt; Error: unknown token when expecting an expression
ready&gt; extern sin(a);
ready&gt; Parsed an extern