Skip to content

Commit 1d7229f

Browse files
committed
fix typos
1 parent f6babb9 commit 1d7229f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/libmongoc/doc/mongoc_client_encryption_delete_key.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Parameters
2222

2323
* ``client_encryption``: A :symbol:`mongoc_client_encryption_t`.
2424
* ``keyid``: The UUID (BSON binary subtype 0x04) of the key to delete.
25-
* ``reply``: Optional. An uninitalized :symbol:`bson:bson_t` set to the delete result. Must be freed by :symbol:`bson_destroy`.
25+
* ``reply``: Optional. An uninitialized :symbol:`bson:bson_t` set to the delete result. Must be freed by :symbol:`bson_destroy`.
2626
* ``error``: Optional. :symbol:`bson_error_t`.
2727

2828
Returns

src/libmongoc/doc/mongoc_collection_drop_with_opts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ If the collection does not exist, the server responds with an "ns not found" err
5959
6060
In MongoDB 3.0 and older, the "ns not found" error code is the generic MONGOC_ERROR_QUERY_FAILURE; in this case check whether the error message is equal to the string "ns not found".
6161

62-
The ``encryptedFields`` document in ``opts`` may be used to create a collection used for :doc:`Using Client-Side Field Level Encryption <using_client_side_encryption>`. If ``encryptedFields`` is specifed, the "ns not found" error is not returned.
62+
The ``encryptedFields`` document in ``opts`` may be used to create a collection used for :doc:`Using Client-Side Field Level Encryption <using_client_side_encryption>`. If ``encryptedFields`` is specified, the "ns not found" error is not returned.
6363

6464
Errors
6565
------

src/libmongoc/src/mongoc/mongoc-crypt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ _mongoc_crypt_new (const bson_t *kms_providers,
10011001
MONGOC_ERROR_CLIENT_SIDE_ENCRYPTION,
10021002
MONGOC_ERROR_CLIENT_INVALID_ENCRYPTION_STATE,
10031003
"Option 'cryptSharedLibRequired' is 'true', but failed to "
1004-
"load the crypt_shared runtime libary");
1004+
"load the crypt_shared runtime library");
10051005
goto fail;
10061006
}
10071007
mongoc_log (MONGOC_LOG_LEVEL_DEBUG,

0 commit comments

Comments
 (0)