File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ private Branch BuildFromReferenceName(string canonicalName)
91
91
/// <returns>An <see cref="IEnumerator{T}"/> object that can be used to iterate through the collection.</returns>
92
92
public virtual IEnumerator < Branch > GetEnumerator ( )
93
93
{
94
- return Proxy . git_branch_foreach ( repo . Handle , GitBranchType . GIT_BRANCH_LOCAL | GitBranchType . GIT_BRANCH_REMOTE , BranchToCanoncialName )
94
+ return Proxy . git_branch_foreach ( repo . Handle , GitBranchType . GIT_BRANCH_LOCAL | GitBranchType . GIT_BRANCH_REMOTE , BranchToCanonicalName )
95
95
. Select ( n => this [ n ] )
96
96
. GetEnumerator ( ) ;
97
97
}
@@ -203,7 +203,7 @@ private static bool LooksLikeABranchName(string referenceName)
203
203
referenceName . LooksLikeRemoteTrackingBranch ( ) ;
204
204
}
205
205
206
- private static string BranchToCanoncialName ( IntPtr namePtr , GitBranchType branchType )
206
+ private static string BranchToCanonicalName ( IntPtr namePtr , GitBranchType branchType )
207
207
{
208
208
string shortName = LaxUtf8Marshaler . FromNative ( namePtr ) ;
209
209
You can’t perform that action at this time.
0 commit comments