diff src/org/tmatesoft/hg/core/HgCatCommand.java @ 368:8107b95f4280

Update Javadoc with 'revision index'
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 16 Dec 2011 16:00:57 +0100
parents 2fadf8695f8a
children 0ae53c32ecef
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgCatCommand.java	Fri Dec 16 15:37:27 2011 +0100
+++ b/src/org/tmatesoft/hg/core/HgCatCommand.java	Fri Dec 16 16:00:57 2011 +0100
@@ -65,12 +65,12 @@
 	}
 
 	/**
-	 * Select specific revision of the file to cat with local revision index. Note, revision numbering is of particular file, not that of
+	 * Select specific revision of the file to cat with revision local index. Note, revision numbering is of particular file, not that of
 	 * repository (i.e. revision 0 means initial content of the file, irrespective of changeset revision at the time of commit) 
 	 * 
 	 * Invocation of this method clears revision set with {@link #revision(Nodeid)} or {@link #revision(int)} earlier.
 	 * 
-	 * @param fileRevisionIndex local revision index, non-negative, or one of predefined constants. Note, use of {@link HgRepository#BAD_REVISION}, 
+	 * @param fileRevisionIndex - revision local index, non-negative, or one of predefined constants. Note, use of {@link HgRepository#BAD_REVISION}, 
 	 * although possible, makes little sense (command would fail if executed).  
  	 * @return <code>this</code> for convenience
 	 */
@@ -116,7 +116,7 @@
 	 * Select whatever revision of the file that was actual at the time of the specified changeset. Unlike {@link #revision(int)} or {@link #revision(Nodeid)}, this method 
 	 * operates in terms of repository global revisions (aka changesets). 
 	 * 
-	 * Invocation of this method clears local file revisions selection.
+	 * Invocation of this method clears selection of a file revision with its index.
 	 * 
 	 * @param nodeid changeset revision
 	 * @return <code>this</code> for convenience