summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <vicent@github.com>2014-09-16 13:24:52 +0200
committerVicent Marti <vicent@github.com>2014-09-16 13:24:52 +0200
commit73dd663876bbc070bdc0c062ba3e14448ed11c30 (patch)
treebed65d1655c8e4225c76814105be8a35dd1ed3f8
parent903a76168e9696aa87e92ca901197623f425ec7c (diff)
parent2c22193ba0fd5487bab281aaa09bb6130f6c18b8 (diff)
downloadlibgit2-73dd663876bbc070bdc0c062ba3e14448ed11c30.tar.gz
Merge pull request #2565 from linquize/typo
Fix typo
-rw-r--r--README.md2
-rw-r--r--examples/network/fetch.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d0dbf9386..d77b6919a 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ dependencies, it can make use of a few libraries to add to it:
- pthreads (non-Windows) to enable threadsafe access as well as multi-threaded pack generation
- OpenSSL (non-Windows) to talk over HTTPS and provide the SHA-1 functions
-- LibSSH2 to enable the ssh transport
+- LibSSH2 to enable the SSH transport
- iconv (OSX) to handle the HFS+ path encoding peculiarities
Building libgit2 - Using CMake
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;