Skip to content

Commit

Permalink
docs: fix simple typo, immediatly -> immediately
Browse files Browse the repository at this point in the history
There is a small typo in src/memcache.c, src/memcache_pool.c.

Should read `immediately` rather than `immediatly`.
  • Loading branch information
timgates42 committed Dec 21, 2020
1 parent 0fa35c0 commit dc48dc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/memcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ static void php_mmc_store(INTERNAL_FUNCTION_PARAMETERS, int op) /* {{{ */
continue;
}

/* begin sending requests immediatly */
/* begin sending requests immediately */
mmc_pool_select(pool);
} ZEND_HASH_FOREACH_END();
}
Expand Down Expand Up @@ -1089,7 +1089,7 @@ static void php_mmc_numeric(INTERNAL_FUNCTION_PARAMETERS, int deleted, int inver
continue;
}

/* begin sending requests immediatly */
/* begin sending requests immediately */
mmc_pool_select(pool);
} ZEND_HASH_FOREACH_END();

Expand Down Expand Up @@ -2492,7 +2492,7 @@ PHP_FUNCTION(memcache_flush)
pool->protocol->flush(request, delay);

if (mmc_pool_schedule(pool, pool->servers[i], request) == MMC_OK) {
/* begin sending requests immediatly */
/* begin sending requests immediately */
mmc_pool_select(pool);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/memcache_pool.c
Original file line number Diff line number Diff line change
Expand Up @@ -1303,7 +1303,7 @@ int mmc_pool_schedule_get(
pool->protocol->end_get(mmc->buildreq);
mmc_pool_schedule(pool, mmc, mmc->buildreq);

/* begin sending requests immediatly */
/* begin sending requests immediately */
mmc_pool_select(pool);

mmc->buildreq = mmc_pool_request_get(
Expand Down

0 comments on commit dc48dc3

Please sign in to comment.