From 58426f88e3d55a5abb96d970169135a7e2afa229 Mon Sep 17 00:00:00 2001 From: Igor Kryvenko Date: Mon, 17 Sep 2018 18:38:58 +0300 Subject: [PATCH] GODRIVER-547: Resync read write concern tests to add new read concern levels --- core/readconcern/readconcern.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/readconcern/readconcern.go b/core/readconcern/readconcern.go index 79ec17a0e2..aa8d01a3fe 100644 --- a/core/readconcern/readconcern.go +++ b/core/readconcern/readconcern.go @@ -46,7 +46,7 @@ func Available() *ReadConcern { return New(Level("available")) } -// Only available for operations within multi-document transactions. +// Snapshot is only available for operations within multi-document transactions. func Snapshot() *ReadConcern { return New(Level("snapshot")) }