From 84fa41b682249784c9763ab4f8d4cfd217cc3224 Mon Sep 17 00:00:00 2001 From: Wermeille Bastien Date: Tue, 22 Mar 2022 10:50:16 +0100 Subject: [PATCH] Fix misspell --- edge_collection_documents_impl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edge_collection_documents_impl.go b/edge_collection_documents_impl.go index 17dfe09b..b92ab6d1 100644 --- a/edge_collection_documents_impl.go +++ b/edge_collection_documents_impl.go @@ -188,7 +188,7 @@ func (c *edgeCollection) createDocument(ctx context.Context, document interface{ // If a documents element already contains a `_key` field, this will be used as key of the new document, // otherwise a unique key is created. // If a documents element contains a `_key` field with a duplicate key, other any other field violates an index constraint, -// a ConflictError is returned in its inded in the errors slice. +// a ConflictError is returned at its index in the errors slice. // To return the NEW documents, prepare a context with `WithReturnNew`. The data argument passed to `WithReturnNew` must be // a slice with the same number of entries as the `documents` slice. // To wait until document has been synced to disk, prepare a context with `WithWaitForSync`.