File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ struct Args {
96
96
/// output condensed summary of header info
97
97
flag_summary : bool ,
98
98
#[ structopt( name = "find-renames" , short = "M" , long) ]
99
- /// set threshold for findind renames (default 50)
99
+ /// set threshold for finding renames (default 50)
100
100
flag_find_renames : Option < u16 > ,
101
101
#[ structopt( name = "find-copies" , short = "C" , long) ]
102
102
/// set threshold for finding copies (default 50)
@@ -120,7 +120,7 @@ struct Args {
120
120
/// show given source prefix instead of 'a/'
121
121
flag_src_prefix : Option < String > ,
122
122
#[ structopt( name = "dst-prefix" , long) ]
123
- /// show given destinction prefix instead of 'b/'
123
+ /// show given destination prefix instead of 'b/'
124
124
flag_dst_prefix : Option < String > ,
125
125
#[ structopt( name = "path" , long = "git-dir" ) ]
126
126
/// path to git repository to use
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ fn normal_merge(
120
120
let mut idx = repo. merge_trees ( & ancestor, & local_tree, & remote_tree, None ) ?;
121
121
122
122
if idx. has_conflicts ( ) {
123
- println ! ( "Merge conficts detected..." ) ;
123
+ println ! ( "Merge conflicts detected..." ) ;
124
124
repo. checkout_index ( Some ( & mut idx) , None ) ?;
125
125
return Ok ( ( ) ) ;
126
126
}
@@ -152,7 +152,7 @@ fn do_merge<'a>(
152
152
// 1. do a merge analysis
153
153
let analysis = repo. merge_analysis ( & [ & fetch_commit] ) ?;
154
154
155
- // 2. Do the appopriate merge
155
+ // 2. Do the appropriate merge
156
156
if analysis. 0 . is_fast_forward ( ) {
157
157
println ! ( "Doing a fast forward" ) ;
158
158
// do a fast forward
You can’t perform that action at this time.
0 commit comments