# HG changeset patch
# User Augie Fackler <raf@durin42.com>
# Date 2014-10-16 18:51:15
# Node ID 7b93b49286d0ea2e55faece1dfd6a2a85cceebdb
# Parent  0c14b9166da6bd77f32dd18a7fb93514f46af39e

histedit: update docstring on histeditstate.read()

The docstring showed the previous class-less heritage of read(). Now
that it's classy, update the docstring.

diff --git a/hgext/histedit.py b/hgext/histedit.py
--- a/hgext/histedit.py
+++ b/hgext/histedit.py
@@ -204,8 +204,7 @@ class histeditstate(object):
             self.replacements = replacements
 
     def read(self):
-        """Reads a state from file and returns a histeditstate object
-        """
+        """Load histedit state from disk and set fields appropriately."""
         try:
             fp = self.repo.vfs('histedit-state', 'r')
         except IOError, err: