Skip to content

Commit

Permalink
Merge pull request #82 from timgates42/bugfix_typo_immediately
Browse files Browse the repository at this point in the history
docs: fix simple typo, immediatly -> immediately
  • Loading branch information
tomassrnka committed Dec 28, 2020
2 parents 0fa35c0 + dc48dc3 commit e014963
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
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
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 e014963

Please sign in to comment.