diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2016-02-14 20:16:22 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2016-02-14 20:16:22 +0000 |
commit | 84666a19649df885b40e2fb1da1c11674fcd9620 (patch) | |
tree | b54c386af044fe1b1376c75c3eeb4d2bfc2eb753 /llvm/docs/tutorial | |
parent | 5e27ec33ea81c159c2724aaeeba1826878167ad6 (diff) | |
download | bcm5719-llvm-84666a19649df885b40e2fb1da1c11674fcd9620.tar.gz bcm5719-llvm-84666a19649df885b40e2fb1da1c11674fcd9620.zip |
Fix some typos in the llvm doc
llvm-svn: 260855
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl1.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/OCamlLangImpl1.rst b/llvm/docs/tutorial/OCamlLangImpl1.rst index cf968b5ae89..9de92305a1c 100644 --- a/llvm/docs/tutorial/OCamlLangImpl1.rst +++ b/llvm/docs/tutorial/OCamlLangImpl1.rst @@ -106,7 +106,7 @@ support the if/then/else construct, a for loop, user defined operators, JIT compilation with a simple command line interface, etc. Because we want to keep things simple, the only datatype in Kaleidoscope -is a 64-bit floating point type (aka 'float' in O'Caml parlance). As +is a 64-bit floating point type (aka 'float' in OCaml parlance). As such, all values are implicitly double precision and the language doesn't require type declarations. This gives the language a very nice and simple syntax. For example, the following simple example computes |