You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2010/10/14 19:26:52 UTC

svn commit: r1022621 - /couchdb/trunk/src/couchdb/couch_btree.erl

Author: davisp
Date: Thu Oct 14 17:26:52 2010
New Revision: 1022621

URL: http://svn.apache.org/viewvc?rev=1022621&view=rev
Log:
Fixed typo in comment.


Modified:
    couchdb/trunk/src/couchdb/couch_btree.erl

Modified: couchdb/trunk/src/couchdb/couch_btree.erl
URL: http://svn.apache.org/viewvc/couchdb/trunk/src/couchdb/couch_btree.erl?rev=1022621&r1=1022620&r2=1022621&view=diff
==============================================================================
--- couchdb/trunk/src/couchdb/couch_btree.erl (original)
+++ couchdb/trunk/src/couchdb/couch_btree.erl Thu Oct 14 17:26:52 2010
@@ -191,7 +191,7 @@ query_modify(Bt, LookupKeys, InsertValue
     {ok, NewRoot, Bt3} = complete_root(Bt2, KeyPointers),
     {ok, QueryResults, Bt3#btree{root=NewRoot}}.
 
-% for ordering different operatations with the same key.
+% for ordering different operations with the same key.
 % fetch < remove < insert
 op_order(fetch) -> 1;
 op_order(remove) -> 2;