diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-20 00:29:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-20 00:29:24 +0000 |
commit | f636b9698c61cf346a11b778391c53326b52d3be (patch) | |
tree | 0b3a8157f26b263529ec92b3f6e00e7b42aea8e6 /docs | |
parent | 231843ed1627a9549e1e20e3ad5499fa8dc5b54c (diff) |
minor grammar tweak
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ProgrammersManual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index eaed402d8a..83251e5102 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -2422,7 +2422,7 @@ units concurrently on independent server threads. Fortunately, <p> Conceptually, <tt>LLVMContext</tt> provides isolation. Every LLVM entity (<tt>Module</tt>s, <tt>Value</tt>s, <tt>Type</tt>s, <tt>Constant</tt>s, etc.) -in LLVM's in-memory IR belongs to an <tt>LLVMContext</tt>. Entities in +in LLVM's in-memory IR belong to an <tt>LLVMContext</tt>. Entities in different contexts <em>cannot</em> interact with each other: <tt>Module</tt>s in different contexts cannot be linked together, <tt>Function</tt>s cannot be added to <tt>Module</tt>s in different contexts, etc. What this means is that is is |