lib/mercurial-ruby/diff.rb in mercurial-ruby-0.7.6 vs lib/mercurial-ruby/diff.rb in mercurial-ruby-0.7.7

- old
+ new

@@ -2,21 +2,21 @@ # # The class represents Mercurial diff. Obtained by running an +hg diff+ command. # # The class represents Diff object itself, {Mercurial::DiffFactory DiffFactory} is responsible - # for assembling instances of Diff. For the list of all possible diff-related operations please - # look documentation for {Mercurial::DiffFactory DiffFactory}. + # for assembling instances of Diff. For the list of all possible diff-related operations + # check {Mercurial::DiffFactory DiffFactory}. # class Diff # SHA1 hash of version a of the file. attr_reader :hash_a # SHA1 hash of version b of the file. attr_reader :hash_b - # Version a if the file name. + # Version a of the file name. attr_reader :file_a # Version b of the file name. attr_reader :file_b \ No newline at end of file