diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2021-01-05 14:45:14 +0000 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2021-01-05 14:46:09 +0000 |
commit | 855f2998acfa58ce6f4a7a1a1b3d5d48475b2330 (patch) | |
tree | 050555dacd828e1bb22b2331f563b4ec63cb6109 /include/git2/blob.h | |
parent | f0d7922c9bafff38e12978625f467aafebe75145 (diff) | |
download | libgit2-ethomson/tttoo_many_ttts.tar.gz |
blob: fix name of `GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD`ethomson/tttoo_many_ttts
`GIT_BLOB_FILTER_ATTTRIBUTES_FROM_HEAD` is misspelled, it should be
`GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD`, and it would be if it were not
for the MacBook Pro keyboard and my inattentiveness.
Diffstat (limited to 'include/git2/blob.h')
-rw-r--r-- | include/git2/blob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/blob.h b/include/git2/blob.h index 8e977267d..91b2c1475 100644 --- a/include/git2/blob.h +++ b/include/git2/blob.h @@ -113,7 +113,7 @@ typedef enum { * When set, filters will be loaded from a `.gitattributes` file * in the HEAD commit. */ - GIT_BLOB_FILTER_ATTTRIBUTES_FROM_HEAD = (1 << 2), + GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD = (1 << 2), } git_blob_filter_flag_t; /** |