diff options
author | Linquize <linquize@yahoo.com.hk> | 2014-09-16 08:56:33 +0800 |
---|---|---|
committer | Linquize <linquize@yahoo.com.hk> | 2014-09-16 08:56:33 +0800 |
commit | 2c22193ba0fd5487bab281aaa09bb6130f6c18b8 (patch) | |
tree | b03fb62fd70025c9f9595ea541b404b909cd9c10 /examples | |
parent | 910cd2daa6af0f3af97d283eb4c6a0452688d067 (diff) | |
download | libgit2-2c22193ba0fd5487bab281aaa09bb6130f6c18b8.tar.gz |
Fix typo
Diffstat (limited to 'examples')
-rw-r--r-- | examples/network/fetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/network/fetch.c b/examples/network/fetch.c index 03f1541a4..8d882095b 100644 --- a/examples/network/fetch.c +++ b/examples/network/fetch.c @@ -155,7 +155,7 @@ int fetch(git_repository *repo, int argc, char **argv) // Update the references in the remote's namespace to point to the // right commits. This may be needed even if there was no packfile // to download, which can happen e.g. when the branches have been - // changed but all the neede objects are available locally. + // changed but all the needed objects are available locally. if (git_remote_update_tips(remote, NULL, NULL) < 0) return -1; |