summaryrefslogtreecommitdiff
path: root/include/git2
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-02-07 19:22:31 -0800
committerBen Straub <bs@github.com>2013-06-13 17:19:33 -0700
commit1a68c168a6cdbe0db6e44fb582a7026a7d536c9d (patch)
tree1d988ff9f295565979d3ef547831ca8947710e98 /include/git2
parentedcb6ee649b5f18586cfa61252e371fbaa72d090 (diff)
downloadlibgit2-1a68c168a6cdbe0db6e44fb582a7026a7d536c9d.tar.gz
Fix spelling, remove pesky consts
Diffstat (limited to 'include/git2')
-rw-r--r--include/git2/blame.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/blame.h b/include/git2/blame.h
index 7f0fb2617..443b33503 100644
--- a/include/git2/blame.h
+++ b/include/git2/blame.h
@@ -45,7 +45,7 @@ typedef enum {
* `GIT_BLAME_OPTIONS_INIT` macro:
* git_blame_options opts = GIT_BLAME_OPTIONS_INIT;
*
- * - `flags` is a combination fo teh `git_blame_flag_t` values above.
+ * - `flags` is a combination of the `git_blame_flag_t` values above.
* - `min_match_characters` is the lower bound on the number of alphanumeric
* characters that must be detected as moving/copying within a file for it to
* associate those lines with the parent commit. The default value is 20.
@@ -67,8 +67,8 @@ typedef struct git_blame_options {
uint32_t flags;
uint16_t min_match_characters;
- const git_commit *newest_commit;
- const git_commit *oldest_commit;
+ git_commit *newest_commit;
+ git_commit *oldest_commit;
uint32_t min_line;
uint32_t max_line;
} git_blame_options;