Skip to content

Commit 33e24d5

Browse files
committed
some typos in docs links
1 parent 0189157 commit 33e24d5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/mongoc_bulk_operation_t.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<title>Synopsis</title>
1919
<synopsis><code mime="text/x-csrc"><![CDATA[typedef struct _mongoc_bulk_operation_t mongoc_bulk_operation_t;]]></code></synopsis>
2020
<p>The opaque type <code>mongoc_bulk_operation_t</code> provides an abstraction for submitting multiple write operations as a single batch.</p>
21-
<p>After adding all of the write operations to the <code>mongoc_bulk_operation_t</code>, call <link xref="mongodec_bulk_operation_execute">mongoc_bulk_operation_execute()</link> to execute the operation.</p>
21+
<p>After adding all of the write operations to the <code>mongoc_bulk_operation_t</code>, call <link xref="mongoc_bulk_operation_execute">mongoc_bulk_operation_execute()</link> to execute the operation.</p>
2222
<note style="warning"><p>It is only valid to call <link xref="mongoc_bulk_operation_execute">mongoc_bulk_operation_execute()</link> once. The <code>mongoc_bulk_operation_t</code> must be destroyed afterwards.</p></note>
2323
</section>
2424

doc/mongoc_socket_accept.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ mongoc_socket_accept (mongoc_socket_t *sock,
3636

3737
<section id="return">
3838
<title>Returns</title>
39-
<p>NULL upon failure to accept or timeout. A newly allocated <code>mongoc_socket_t</code> that should be released with <link xref="mongoco_socket_destroy">mongoc_socket_destroy()</link> on success.</p>
39+
<p>NULL upon failure to accept or timeout. A newly allocated <code>mongoc_socket_t</code> that should be released with <link xref="mongoc_socket_destroy">mongoc_socket_destroy()</link> on success.</p>
4040
</section>
4141

4242

doc/mongoc_stream_writev.page

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ mongoc_stream_writev (mongoc_stream_t *stream,
2828
<title>Parameters</title>
2929
<table>
3030
<tr><td><p>stream</p></td><td><p>A <link xref="mongoc_stream_t">mongoc_stream_t</link>.</p></td></tr>
31-
<tr><td><p>iov</p></td><td><p>A vector of <link href="mongoc_iovect_t">mongoc_iovec_t</link>.</p></td></tr>
31+
<tr><td><p>iov</p></td><td><p>A vector of <link href="mongoc_iovec_t">mongoc_iovec_t</link>.</p></td></tr>
3232
<tr><td><p>iovcnt</p></td><td><p>The number of items in <code>iov</code>.</p></td></tr>
3333
<tr><td><p>timeout_msec</p></td><td><p>The number of milliseconds to block before indicating failure, or 0 for non-blocking. Negative values indicate the default timeout.</p></td></tr>
3434
</table>
3535
</section>
3636

3737
<section id="description">
3838
<p>The <code>mongoc_stream_writev()</code> function shall perform a write
39-
to a <link xref=">mongoc_stream_t">mongoc_stream_t</link>. It's modeled on the
39+
to a <link xref="mongoc_stream_t">mongoc_stream_t</link>. It's modeled on the
4040
API and semantics of <code>writev()</code>, though the parameters map only
4141
loosely.</p>
4242
</section>

0 commit comments

Comments
 (0)