[sword-svn] r3774 - trunk/src/modules/common
scribe at crosswire.org
scribe at crosswire.org
Sat Aug 15 06:24:56 EDT 2020
Author: scribe
Date: 2020-08-15 06:24:56 -0400 (Sat, 15 Aug 2020)
New Revision: 3774
Modified:
trunk/src/modules/common/zipcomprs.cpp
Log:
fixed case in comments for refactoring
Modified: trunk/src/modules/common/zipcomprs.cpp
===================================================================
--- trunk/src/modules/common/zipcomprs.cpp 2020-07-28 13:57:41 UTC (rev 3773)
+++ trunk/src/modules/common/zipcomprs.cpp 2020-08-15 10:24:56 UTC (rev 3774)
@@ -244,7 +244,7 @@
/******************************************************************************
* ZipCompress::encode - This function "encodes" the input stream into the
* output stream.
- * The GetChars() and SendChars() functions are
+ * The getChars() and sendChars() functions are
* used to separate this method from the actual
* i/o.
* NOTE: must set zlen for parent class to know length of
@@ -269,7 +269,7 @@
memory, Z_BUF_ERROR if there was not enough room in the output buffer,
Z_STREAM_ERROR if the level parameter is invalid.
*/
- direct = 0; // set direction needed by parent [Get|Send]Chars()
+ direct = 0; // set direction needed by parent [get|send]Chars()
// get buffer
char chunk[1024];
@@ -309,7 +309,7 @@
/******************************************************************************
* ZipCompress::decode - This function "decodes" the input stream into the
* output stream.
- * The GetChars() and SendChars() functions are
+ * The getChars() and sendChars() functions are
* used to separate this method from the actual
* i/o.
*/
@@ -333,7 +333,7 @@
enough memory, Z_BUF_ERROR if there was not enough room in the output
buffer, or Z_DATA_ERROR if the input data was corrupted.
*/
- direct = 1; // set direction needed by parent [Get|Send]Chars()
+ direct = 1; // set direction needed by parent [get|send]Chars()
// get buffer
char chunk[1024];
More information about the sword-cvs
mailing list