Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-11-01 16:39:21 +0400
committerBen Straub <bs@github.com>2013-11-01 16:39:21 +0400
commit4f62d55968d4a22a6ea03194aa34ab1b6ca8fdea (patch)
treea850f3cf138af8a55cc0046e20871e1826794009 /examples
parentc44820c616fab29d86f7256840f7114f195c08ca (diff)
Fix typos
Diffstat (limited to 'examples')
-rw-r--r--examples/cat-file.c2
-rw-r--r--examples/network/fetch.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/cat-file.c b/examples/cat-file.c
index 2b54b53b9..5e547628a 100644
--- a/examples/cat-file.c
+++ b/examples/cat-file.c
@@ -31,7 +31,7 @@ static void print_signature(const char *header, const git_signature *sig)
sign, hours, minutes);
}
-/** Printint out a blob is simple, get the contents and print */
+/** Printing out a blob is simple, get the contents and print */
static void show_blob(const git_blob *blob)
{
/* ? Does this need crlf filtering? */
diff --git a/examples/network/fetch.c b/examples/network/fetch.c
index 77327d78e..ad01001d7 100644
--- a/examples/network/fetch.c
+++ b/examples/network/fetch.c
@@ -48,7 +48,7 @@ exit:
}
/**
- * This function gets called for each remote-trackinb branch that gets
+ * This function gets called for each remote-tracking branch that gets
* updated. The message we output depends on whether it's a new one or
* an update.
*/
@@ -138,7 +138,7 @@ int fetch(git_repository *repo, int argc, char **argv)
/**
* If there are local objects (we got a thin pack), then tell
- * the use how many objets we saved from having to cross the
+ * the user how many objects we saved from having to cross the
* network.
*/
if (stats->local_objects > 0) {