Skip to content

Commit f7a39ca

Browse files
committed
fix some misc typos
1 parent 1aca625 commit f7a39ca

13 files changed

+13
-13
lines changed

src/libbson/doc/bson_error_reset.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ non-null, and clears any contained value using :symbol:`bson_error_clear`.
2424

2525
If the given pointer object is null, then the pointer is updated to point to a
2626
local anonymous :symbol:`bson_error_t` object. After the evaluation of this
27-
macro, it is gauranteed that the given pointer is non-null.
27+
macro, it is guaranteed that the given pointer is non-null.
2828

2929
.. important:: This function-like macro is not valid in C++!

src/libmongoc/doc/mongoc_bulkwrite_append_deletemany.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Description
1919
-----------
2020

2121
Adds a multi-document delete into the namespace ``ns``. Returns true on success. Returns false and sets ``error`` if an
22-
error occured.
22+
error occurred.

src/libmongoc/doc/mongoc_bulkwrite_append_deleteone.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Description
1919
-----------
2020

2121
Adds a single-document delete into the namespace ``ns``. Returns true on success. Returns false and sets ``error`` if an
22-
error occured.
22+
error occurred.

src/libmongoc/doc/mongoc_bulkwrite_append_insertone.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Description
1919
-----------
2020

2121
Adds a document to insert into the namespace ``ns``. Returns true on success. Returns false and sets ``error`` if an
22-
error occured.
22+
error occurred.

src/libmongoc/doc/mongoc_bulkwrite_append_replaceone.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Description
2020
-----------
2121

2222
Adds a replace operation for the namespace ``ns``. Returns true on success. Returns false and sets ``error`` if an
23-
error occured.
23+
error occurred.

src/libmongoc/doc/mongoc_bulkwrite_append_updatemany.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Description
2020
-----------
2121

2222
Adds a multi-document update for the namespace ``ns``. Returns true on success. Returns false and sets ``error`` if an
23-
error occured.
23+
error occurred.

src/libmongoc/doc/mongoc_bulkwrite_append_updateone.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Description
2020
-----------
2121

2222
Adds a single-document update for the namespace ``ns``. Returns true on success. Returns false and sets ``error`` if an
23-
error occured.
23+
error occurred.

src/libmongoc/doc/mongoc_bulkwrite_check_acknowledged.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ Description
1515
-----------
1616

1717
Checks whether or not the previous call to :symbol:`mongoc_bulkwrite_execute` used an acknowledged write concern. If
18-
an error occured, the ``is_ok`` member of :symbol:`mongoc_bulkwrite_check_acknowledged_t` will be ``false`` and
18+
an error occurred, the ``is_ok`` member of :symbol:`mongoc_bulkwrite_check_acknowledged_t` will be ``false`` and
1919
``error`` will be set.

src/libmongoc/doc/mongoc_bulkwrite_serverid.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ Synopsis
1414
Description
1515
-----------
1616

17-
Gets the server ID last used in the previous call to :symbol:`mongoc_bulkwrite_execute`. If an error occured, the
17+
Gets the server ID last used in the previous call to :symbol:`mongoc_bulkwrite_execute`. If an error occurred, the
1818
``is_ok`` member of :symbol:`mongoc_bulkwrite_serverid_t` will be ``false`` and ``error`` will be set.

src/libmongoc/examples/example-structured-log.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ main(void)
9999
mongoc_structured_log_opts_set_handler(log_opts, example_handler, NULL);
100100

101101
/*
102-
* By default libmongoc proceses log options from the environment first,
102+
* By default libmongoc processes log options from the environment first,
103103
* and then allows you to apply programmatic overrides. To request the
104104
* opposite behavior, allowing the environment to override programmatic
105105
* defaults, you can ask for the environment to be re-read after setting

0 commit comments

Comments
 (0)