Skip to content

Commit f919677

Browse files
committed
spelling: _mongoc_async_cmd_phase_t
1 parent 84907a1 commit f919677

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mongoc/mongoc-async-cmd.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#undef MONGOC_LOG_DOMAIN
3434
#define MONGOC_LOG_DOMAIN "async"
3535

36-
typedef mongoc_async_cmd_result_t (*_monogc_async_cmd_phase_t)(
36+
typedef mongoc_async_cmd_result_t (*_mongoc_async_cmd_phase_t)(
3737
mongoc_async_cmd_t *cmd);
3838

3939
mongoc_async_cmd_result_t
@@ -45,7 +45,7 @@ _mongoc_async_cmd_phase_recv_len (mongoc_async_cmd_t *cmd);
4545
mongoc_async_cmd_result_t
4646
_mongoc_async_cmd_phase_recv_rpc (mongoc_async_cmd_t *cmd);
4747

48-
static const _monogc_async_cmd_phase_t gMongocCMDPhases[] = {
48+
static const _mongoc_async_cmd_phase_t gMongocCMDPhases[] = {
4949
_mongoc_async_cmd_phase_setup,
5050
_mongoc_async_cmd_phase_send,
5151
_mongoc_async_cmd_phase_recv_len,
@@ -96,7 +96,7 @@ mongoc_async_cmd_run (mongoc_async_cmd_t *acmd)
9696
{
9797
mongoc_async_cmd_result_t result;
9898
int64_t rtt;
99-
_monogc_async_cmd_phase_t phase_callback;
99+
_mongoc_async_cmd_phase_t phase_callback;
100100

101101
phase_callback = gMongocCMDPhases[acmd->state];
102102
if (phase_callback) {

0 commit comments

Comments
 (0)