@@ -53,16 +53,16 @@ public struct GitBlameFlagT: COptionSet
5353 ///
5454 /// This is the equivalent of `git blame -M`.
5555 ///
56- /// - Note: This has not yet been implemented, but is reserved for
57- /// future use.
56+ /// - Note: This has not been implemented in libgit2 yet , but is reserved
57+ /// for future use.
5858 public static let gitBlameTrackCopiesSameFile = GitBlameFlagT ( rawValue: GIT_BLAME_TRACK_COPIES_SAME_FILE . rawValue)
5959
6060 /// Track lines that have moved across files in the same commit.
6161 ///
6262 /// This is the equivalent of `git blame -C`.
6363 ///
64- /// - Note: This has not yet been implemented, but is reserved for
65- /// future use.
64+ /// - Note: This has not been implemented in libgit2 yet , but is reserved
65+ /// for future use.
6666 public static let gitBlameTrackCopiesSameCommitMoves = GitBlameFlagT ( rawValue: GIT_BLAME_TRACK_COPIES_SAME_COMMIT_MOVES . rawValue)
6767
6868 /// Track lines that have been copied from another file that exists in the
@@ -71,8 +71,8 @@ public struct GitBlameFlagT: COptionSet
7171 /// This is the equivalent of `git blame -CC`, and implies
7272 /// ``gitBlameTrackCopiesSameFile``.
7373 ///
74- /// - Note: This has not yet been implemented, but is reserved for
75- /// future use.
74+ /// - Note: This has not been implemented in libgit2 yet , but is reserved
75+ /// for future use.
7676 public static let gitBlameTrackCopiesSameCommitCopies = GitBlameFlagT ( rawValue: GIT_BLAME_TRACK_COPIES_SAME_COMMIT_COPIES . rawValue)
7777
7878 /// Track lines that have been copied from another file that exists in
@@ -81,8 +81,8 @@ public struct GitBlameFlagT: COptionSet
8181 /// This is the equivalent of `git blame -CCC`, and implies
8282 /// ``gitBlameTrackCopiesSameCommitCopies``.
8383 ///
84- /// - Note: This has not yet been implemented, but is reserved for
85- /// future use.
84+ /// - Note: This has not been implemented in libgit2 yet , but is reserved
85+ /// for future use.
8686 public static let gitBlameTrackCopiesAnyCommitCopies = GitBlameFlagT ( rawValue: GIT_BLAME_TRACK_COPIES_ANY_COMMIT_COPIES . rawValue)
8787
8888 /// Restrict the search of commits to those reachable by following only
0 commit comments