aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2008-09-06 23:29:18 +0000
committernyamatongwe <devnull@localhost>2008-09-06 23:29:18 +0000
commitf32900246ddb8214b2e58417a33c2b631fa450bb (patch)
treee83e171868b3a43bfe6d969fedf1daa405ffccb8
parentfbc8850c2bbac8207b879a6f1f0355a374049cdc (diff)
downloadscintilla-mirror-f32900246ddb8214b2e58417a33c2b631fa450bb.tar.gz
Comment fix.
-rw-r--r--win32/PlatWin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx
index 3f0ddd9fb..84ee0ce85 100644
--- a/win32/PlatWin.cxx
+++ b/win32/PlatWin.cxx
@@ -663,7 +663,7 @@ void SurfaceImpl::Copy(PRectangle rc, Point from, Surface &surfaceSource) {
static_cast<SurfaceImpl &>(surfaceSource).hdc, from.x, from.y, SRCCOPY);
}
-// Buffer to hold size strings and string position arrays without always allocating on heap.
+// Buffer to hold strings and string position arrays without always allocating on heap.
// May sometimes have string too long to allocate on stack. So use a fixed stack-allocated buffer
// when less than safe size otherwise allocate on heap and free automatically.
template<typename T, int lengthStandard>