Skip to content

Commit 0fc237a

Browse files
lint fix
1 parent 86e1a91 commit 0fc237a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/write_concern.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ interface CommandWriteConcernOptions {
5858
* @see https://www.mongodb.com/docs/manual/reference/write-concern/
5959
*/
6060
export class WriteConcern {
61-
/**
62-
* Request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags.
63-
* If w is 0 and is set on the command in the request, the server will not send a response.
64-
*/
61+
/**
62+
* Request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags.
63+
* If w is 0 and is set on a write operation, the server will not send a response.
64+
*/
6565
readonly w?: W;
6666
/** Request acknowledgment that the write operation has been written to the on-disk journal */
6767
readonly journal?: boolean;

0 commit comments

Comments
 (0)