Update Query.hs

Fix url to mongo documentation on update modifiers.
This commit is contained in:
jaccokrijnen 2018-10-31 15:03:23 +01:00 committed by GitHub
parent eb7273e091
commit 12ab2aef66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -611,7 +611,7 @@ upsert :: (MonadIO m)
upsert = update [Upsert]
type Modifier = Document
-- ^ Update operations on fields in a document. See <http://www.mongodb.org/display/DOCS/Updating#Updating-ModifierOperations>
-- ^ Update operations on fields in a document. See <https://docs.mongodb.com/manual/reference/operator/update/>
modify :: (MonadIO m)
=> Selection -> Modifier -> Action m ()