Skip to content

Commit 0c11cab

Browse files
carsonmcdonalddsp
authored andcommitted
Typo fix: recieved to received
1 parent e98271f commit 0c11cab

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/oci8/php_oci8_int.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ typedef struct { /* php_oci_statement {{{ */
191191
sword errcode; /* last errcode*/
192192
OCIError *err; /* private error handle */
193193
OCIStmt *stmt; /* statement handle */
194-
char *last_query; /* last query issued. also used to determine if this is a statement or a refcursor recieved from Oracle */
194+
char *last_query; /* last query issued. also used to determine if this is a statement or a refcursor received from Oracle */
195195
long last_query_len; /* last query length */
196196
HashTable *columns; /* hash containing all the result columns */
197197
HashTable *binds; /* binds hash */

ext/standard/tests/array/uasort_variation9.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ echo "*** Testing uasort() : 'cmp_function' with reference arguments ***\n";
1414

1515
// comparison function
1616
/* Prototype : int cmp(mixed &$value1, mixed &$value2)
17-
* Parameters : $value1 and $value2 - values recieved by reference
17+
* Parameters : $value1 and $value2 - values received by reference
1818
* Return value : 0 - if both values are same
1919
* 1 - if value1 is greater than value2
2020
* -1 - if value1 is less than value2

main/network.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ php_socket_t php_network_connect_socket_to_host(const char *host, unsigned short
872872
efree(local_address);
873873
}
874874
}
875-
/* free error string recieved during previous iteration (if any) */
875+
/* free error string received during previous iteration (if any) */
876876
if (error_string && *error_string) {
877877
efree(*error_string);
878878
*error_string = NULL;

0 commit comments

Comments
 (0)