From e40b84d33e074720c5a2bac8cc8dc3080f4cd316 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Mon, 3 Sep 2012 16:37:44 +0200 Subject: [PATCH] fixed typos in documentation --- arangod/VocBase/collection.h | 4 ++-- arangod/VocBase/document-collection.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arangod/VocBase/collection.h b/arangod/VocBase/collection.h index 493d66a9ab..f1d637421c 100644 --- a/arangod/VocBase/collection.h +++ b/arangod/VocBase/collection.h @@ -44,10 +44,10 @@ extern "C" { /// /// Data is stored in datafiles. A set of datafiles forms a collection. A /// datafile can be read-only and sealed or read-write. All datafiles of a -/// collections are stored in a directory. This directory contains the following +/// collection are stored in a directory. This directory contains the following /// files: /// -/// - parameter.json: The parameter of a collection. +/// - parameter.json: The parameters of a collection. /// /// - datafile-NNN.db: A read-only datafile. The number NNN is the datafile /// identifier, see @ref TRI_datafile_t. diff --git a/arangod/VocBase/document-collection.h b/arangod/VocBase/document-collection.h index 50bcb87740..71b85ee6ea 100644 --- a/arangod/VocBase/document-collection.h +++ b/arangod/VocBase/document-collection.h @@ -236,12 +236,12 @@ TRI_doc_collection_info_t; /// /// Deletes an existing document from the given collection and returns @ref /// TRI_ERROR_NO_ERROR in case of success. Otherwise, an error is returned and -/// the "TRI_errno()" is accordingly. The function DOES NOT acquire a write +/// the "TRI_errno()" is set accordingly. The function DOES NOT acquire a write /// lock. However, if @FA{release} is true, it will release the write lock as /// soon as possible. /// /// If the policy is @ref TRI_doc_update_policy_e "TRI_DOC_UPDATE_ERROR" and the -/// reivision is given, than it must match the current revision of the +/// revision is given, then it must match the current revision of the /// document. If the delete was executed, than @FA{current} contains the last /// valid revision of the document. If the delete was aborted, than @FA{current} /// contains the revision of the still alive document.