Skip to content

Commit

Permalink
Merge pull request rust-lang#114 from hoodie/master
Browse files Browse the repository at this point in the history
tiny little typo fix
  • Loading branch information
alexcrichton committed Feb 29, 2016
2 parents e286949 + b7dc8b7 commit f54ef2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/fetch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fn run(args: &Args) -> Result<(), git2::Error> {
let remote = args.arg_remote.as_ref().map(|s| &s[..]).unwrap_or("origin");

// Figure out whether it's a named remote or a URL
println!("Fetcing {} for repo", remote);
println!("Fetching {} for repo", remote);
let mut cb = RemoteCallbacks::new();
let mut remote = try!(repo.find_remote(remote).or_else(|_| {
repo.remote_anonymous(remote)
Expand Down

0 comments on commit f54ef2e

Please sign in to comment.