diff options
Diffstat (limited to 'src/fabric_rpc.erl')
-rw-r--r-- | src/fabric_rpc.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fabric_rpc.erl b/src/fabric_rpc.erl index 673627da..6be7c3cc 100644 --- a/src/fabric_rpc.erl +++ b/src/fabric_rpc.erl @@ -161,7 +161,7 @@ get_update_seq(DbName) -> with_db(DbName, [], {couch_db, get_update_seq, []}). open_doc(DbName, DocId, Options) -> - with_db(DbName, Options, {couch_db, open_doc_int, [DocId, Options]}). + with_db(DbName, Options, {couch_db, open_doc, [DocId, Options]}). open_revs(DbName, Id, Revs, Options) -> with_db(DbName, Options, {couch_db, open_doc_revs, [Id, Revs, Options]}). |