You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by cm...@apache.org on 2008/04/05 00:27:16 UTC

svn commit: r644964 - /incubator/couchdb/trunk/src/couchdb/couch_db.erl

Author: cmlenz
Date: Fri Apr  4 15:27:12 2008
New Revision: 644964

URL: http://svn.apache.org/viewvc?rev=644964&view=rev
Log:
Fix typo in error id.

Modified:
    incubator/couchdb/trunk/src/couchdb/couch_db.erl

Modified: incubator/couchdb/trunk/src/couchdb/couch_db.erl
URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/src/couchdb/couch_db.erl?rev=644964&r1=644963&r2=644964&view=diff
==============================================================================
--- incubator/couchdb/trunk/src/couchdb/couch_db.erl (original)
+++ incubator/couchdb/trunk/src/couchdb/couch_db.erl Fri Apr  4 15:27:12 2008
@@ -72,7 +72,7 @@
             ok = file:rename(Filepath ++ ".compact", Filepath),
             Fd0;
         {error, enoent} ->
-            throw({error, notfound})
+            throw({error, not_found})
         end;
     Else ->
         throw(Else)