diff options
author | nyamatongwe <devnull@localhost> | 2000-06-08 05:05:20 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-06-08 05:05:20 +0000 |
commit | 02d344866bc51a274f1605a6fcf3a14f8182e44e (patch) | |
tree | 676d883433f02331198c3e9e08c441cb0098bdad /src/Document.cxx | |
parent | 7551b27470d2a415b1b1e8d1bf1a4efdb8b81d2b (diff) | |
download | scintilla-mirror-02d344866bc51a274f1605a6fcf3a14f8182e44e.tar.gz |
Added CreateDocument message and changed AddRefDoc and ReleaseDoc to
AddRefDocument and ReleaseDocument.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index de06756a5..0f71231b6 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -54,7 +54,7 @@ int Document::AddRef() { return refCount++; } -// Decrease reference count and return its provius value. +// Decrease reference count and return its previous value. // Delete the document if reference count reaches zero. int Document::Release() { int curRefCount = --refCount; |