Skip to content

Commit f68e9e8

Browse files
committed
typos (orig)
1 parent 46b7683 commit f68e9e8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Zend/zend_generators.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ ZEND_API void zend_generator_close(zend_generator *generator, zend_bool finished
5555
zval_ptr_dtor(&execute_data->current_this);
5656
}
5757

58-
/* A fatal error / die occured during the generator execution. Trying to clean
58+
/* A fatal error / die occurred during the generator execution. Trying to clean
5959
* up the stack may not be safe in this case. */
6060
if (CG(unclean_shutdown)) {
6161
return;

ext/opcache/tests/compact_literals.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ unset($array["2"]);
2222

2323
print_r($array);
2424

25-
echo "funcion define" . ":" . PHP_EOL;
25+
echo "function define" . ":" . PHP_EOL;
2626
if (!function_exists("dummy")) {
2727
function dummy() {
2828
var_dump(__FUNCTION__);
@@ -165,7 +165,7 @@ Array
165165
[1] => one
166166
[two] => 2
167167
)
168-
funcion define:
168+
function define:
169169
string(5) "dummy"
170170
string(11) "lambdadummy"
171171
string(1) "A"

ext/openssl/openssl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1492,7 +1492,7 @@ PHP_FUNCTION(openssl_spki_verify)
14921492

14931493
pkey = X509_PUBKEY_get(spki->spkac->pubkey);
14941494
if (pkey == NULL) {
1495-
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to aquire signed public key");
1495+
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to acquire signed public key");
14961496
goto cleanup;
14971497
}
14981498

@@ -1549,7 +1549,7 @@ PHP_FUNCTION(openssl_spki_export)
15491549

15501550
pkey = X509_PUBKEY_get(spki->spkac->pubkey);
15511551
if (pkey == NULL) {
1552-
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to aquire signed public key");
1552+
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to acquire signed public key");
15531553
goto cleanup;
15541554
}
15551555

ext/sqlite3/libsqlite/sqlite3.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118508,7 +118508,7 @@ static int star_oh(const char *z){
118508118508

118509118509
/*
118510118510
** If the word ends with zFrom and xCond() is true for the stem
118511-
** of the word that preceds the zFrom ending, then change the
118511+
** of the word that precede the zFrom ending, then change the
118512118512
** ending to zTo.
118513118513
**
118514118514
** The input word *pz and zFrom are both in reverse order. zTo
@@ -127688,7 +127688,7 @@ SQLITE_API int sqlite3_extension_init(
127688127688
** * Implementations of the SQL scalar upper() and lower() functions
127689127689
** for case mapping.
127690127690
**
127691-
** * Integration of ICU and SQLite collation seqences.
127691+
** * Integration of ICU and SQLite collation sequences.
127692127692
**
127693127693
** * An implementation of the LIKE operator that uses ICU to
127694127694
** provide case-independent matching.

0 commit comments

Comments
 (0)