Skip to content

Commit 8117647

Browse files
clark.kangdormando
authored andcommitted
fix typos
1 parent f87ac29 commit 8117647

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

ChangeLog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@
309309
uint8_t types.
310310

311311
* Major refactoring - move API calls for assoc/items/slabs to
312-
their own individual header files. Add apropriate const and
312+
their own individual header files. Add appropriate const and
313313
static declarations as appropriate.
314314

315315
* Avoid type-punning. Do a more efficient realloc inside the
@@ -404,7 +404,7 @@
404404
causing expiration times to not be processed correctly.
405405

406406
2006-08-21
407-
* Nathan Neulinger <[email protected]>: fix incompatabilities with
407+
* Nathan Neulinger <[email protected]>: fix incompatibilities with
408408
unix domain socket support and the UDP code and clean up stale
409409
sockets
410410

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ TYPEDEF_HIDES_STRUCT = NO
281281
# causing a significant performance penality.
282282
# If the system has enough physical memory increasing the cache will improve the
283283
# performance by keeping more symbols in memory. Note that the value works on
284-
# a logarithmic scale so increasing the size by one will rougly double the
284+
# a logarithmic scale so increasing the size by one will roughly double the
285285
# memory usage. The cache size is given by this formula:
286286
# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
287287
# corresponding to a cache size of 2^16 = 65536 symbols

doc/protocol.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ Slabs Reassign
347347
NOTE: This command is subject to change as of this writing.
348348

349349
The slabs reassign command is used to redistribute memory once a running
350-
instance has hit its limit. It might be desireable to have memory laid out
350+
instance has hit its limit. It might be desirable to have memory laid out
351351
differently than was automatically assigned after the server started.
352352

353353
slabs reassign <source class> <dest class>\r\n
@@ -425,7 +425,7 @@ The response line could be one of:
425425

426426
lru_crawler sleep <microseconds>
427427

428-
- The number of microseconds to sleep inbetween each item checked for
428+
- The number of microseconds to sleep in between each item checked for
429429
expiration. Smaller numbers will obviously impact the system more.
430430
A value of "0" disables the sleep, "1000000" (one second) is the max.
431431

jenkins_hash.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ uint32_t jenkins_hash(
159159
* rest of the string. Every machine with memory protection I've seen
160160
* does it on word boundaries, so is OK with this. But VALGRIND will
161161
* still catch it and complain. The masking trick does make the hash
162-
* noticably faster for short strings (like English words).
162+
* noticeably faster for short strings (like English words).
163163
*/
164164
#ifndef VALGRIND
165165

@@ -337,7 +337,7 @@ uint32_t jenkins_hash( const void *key, size_t length)
337337
* rest of the string. Every machine with memory protection I've seen
338338
* does it on word boundaries, so is OK with this. But VALGRIND will
339339
* still catch it and complain. The masking trick does make the hash
340-
* noticably faster for short strings (like English words).
340+
* noticeably faster for short strings (like English words).
341341
*/
342342
#ifndef VALGRIND
343343

memcached.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ static int try_read_command(conn *c);
6565
enum try_read_result {
6666
READ_DATA_RECEIVED,
6767
READ_NO_DATA_RECEIVED,
68-
READ_ERROR, /** an error occured (on the socket) (or client closed connection) */
68+
READ_ERROR, /** an error occurred (on the socket) (or client closed connection) */
6969
READ_MEMORY_ERROR /** failed to allocate more memory */
7070
};
7171

murmur3_hash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ static FORCE_INLINE uint32_t fmix32 ( uint32_t h )
6666

6767
//-----------------------------------------------------------------------------
6868

69-
/* Defintion modified slightly from the public domain interface (no seed +
69+
/* Definition modified slightly from the public domain interface (no seed +
7070
* return value */
7171
uint32_t MurmurHash3_x86_32 ( const void * key, size_t length)
7272
{

protocol_binary.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ extern "C"
7474
} protocol_binary_response_status;
7575

7676
/**
77-
* Defintion of the different command opcodes.
77+
* Definition of the different command opcodes.
7878
* See section 3.3 Command Opcodes
7979
*/
8080
typedef enum {

0 commit comments

Comments
 (0)