comparison hgext/extdiff.py @ 2338:391c5d0f9ef3

Minor typo change to reflect actual values used.
author "Daniel Santa Cruz <dansan@vikus.com>"
date Mon, 22 May 2006 12:17:44 -0400
parents de0c05afa511
children d99a92b7acad
comparison
equal deleted inserted replaced
2337:3f24bc5dee81 2338:391c5d0f9ef3
99 99
100 def extdiff(ui, repo, *pats, **opts): 100 def extdiff(ui, repo, *pats, **opts):
101 '''use external program to diff repository (or selected files) 101 '''use external program to diff repository (or selected files)
102 102
103 Show differences between revisions for the specified files, using 103 Show differences between revisions for the specified files, using
104 an external program. The default program used is "diff -Pnru". 104 an external program. The default program used is "diff -Npru".
105 To select a different program, use the -p option. The program 105 To select a different program, use the -p option. The program
106 will be passed the names of two directories to compare. To pass 106 will be passed the names of two directories to compare. To pass
107 additional options to the program, use the -o option. These will 107 additional options to the program, use the -o option. These will
108 be passed before the names of the directories to compare. 108 be passed before the names of the directories to compare.
109 109