summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorHiroshi Inoue <inouehrs@jp.ibm.com>2017-07-13 06:48:39 +0000
committerHiroshi Inoue <inouehrs@jp.ibm.com>2017-07-13 06:48:39 +0000
commitff281e5fb66a2f7819e1757cee6f7cc290e92ab6 (patch)
treee8bb86eb91ce214d706eb21101ffcaaae22be7db /examples
parent719506a866bb3dd9b60110a8d6dd29c9aa461ec6 (diff)
fix typos in comments and error messges; NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@307885 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/Kaleidoscope/include/KaleidoscopeJIT.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Kaleidoscope/include/KaleidoscopeJIT.h b/examples/Kaleidoscope/include/KaleidoscopeJIT.h
index 90ae3d1041e..215ce03af99 100644
--- a/examples/Kaleidoscope/include/KaleidoscopeJIT.h
+++ b/examples/Kaleidoscope/include/KaleidoscopeJIT.h
@@ -115,7 +115,7 @@ private:
return JITSymbol(SymAddr, JITSymbolFlags::Exported);
#ifdef LLVM_ON_WIN32
- // For Windows retry without "_" at begining, as RTDyldMemoryManager uses
+ // For Windows retry without "_" at beginning, as RTDyldMemoryManager uses
// GetProcAddress and standard libraries like msvcrt.dll use names
// with and without "_" (for example "_itoa" but "sin").
if (Name.length() > 2 && Name[0] == '_')