From ab13a2ba8e4c42afd28c0671d7749181488a7400 Mon Sep 17 00:00:00 2001 From: Orpheus Lummis Date: Tue, 1 Mar 2022 10:26:49 -0500 Subject: [PATCH] typos --- document/document.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/document/document.go b/document/document.go index 8db8a3c791..1c886d710a 100644 --- a/document/document.go +++ b/document/document.go @@ -25,16 +25,15 @@ import ( "github.com/sourcenetwork/defradb/document/key" ) -// This is the main implementation stating point for accessing the internal Document API -// Which provides API access to the various operations available for Documents -// IE. CRUD. +// This is the main implementation starting point for accessing the internal Document API +// which provides API access to the various operations available for Documents, i.e. CRUD. // // Documents in this case refer to the core database type of DefraDB which is a -// "NoSQL Document Datastore" +// "NoSQL Document Datastore". // // This section is not concerned with the outer query layer used to interact with the // Document API, but instead is solely concerned with carrying out the internal API -// operations, i.e. CRUD. +// operations. // // Note: These actions on the outside are deceivingly simple, but require a number // of complex interactions with the underlying KV Datastore, as well as the @@ -54,8 +53,9 @@ var ( // // Documents are similar to JSON Objects stored in MongoDB, which are collections // of Fields and Values. -// Fields are Key names that point to values -// Values are literal or complex objects such as strings, integers, or sub documents (objects) +// +// Fields are Key names that point to values. +// Values are literal or complex objects such as strings, integers, or sub documents (objects). // // Note: Documents represent the serialized state of the underlying MerkleCRDTs //