Fix a typo.
authorDan Gohman <gohman@apple.com>
Mon, 15 Jun 2009 18:22:49 +0000 (18:22 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 15 Jun 2009 18:22:49 +0000 (18:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73397 91177308-0d34-0410-b5e6-96231b3b80d8

docs/WritingAnLLVMPass.html

index 9eb97e1d66f7df1a59e1d8585a629c5fd6f5d8d3..8374bfac671050e0d4e2970bb4e6337a0c4e5707 100644 (file)
@@ -1537,7 +1537,7 @@ need some way to free analysis results when they are no longer useful.  The
 <p>If you are writing an analysis or any other pass that retains a significant
 amount of state (for use by another pass which "requires" your pass and uses the
 <a href="#getAnalysis">getAnalysis</a> method) you should implement
-<tt>releaseMEmory</tt> to, well, release the memory allocated to maintain this
+<tt>releaseMemory</tt> to, well, release the memory allocated to maintain this
 internal state.  This method is called after the <tt>run*</tt> method for the
 class, before the next call of <tt>run*</tt> in your pass.</p>