Skip to content

Commit

Permalink
Fixed incorrect spelling of P/Invoke
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Aug 15, 2016
1 parent 89577f1 commit acd9f82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion binding/Binding/SKPath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public Verb Next (SKPoint [] points, bool doConsumeDegenerates = true, bool exac

public float ConicWeight () => SkiaApi.sk_path_iter_conic_weight (handle);
public bool IsCloseLine () => SkiaApi.sk_path_iter_is_close_line (handle) != 0;
public bool IsCloseContour () => SkiaApi.sk_path_iter_is_closed_countour (handle) != 0;
public bool IsCloseContour () => SkiaApi.sk_path_iter_is_closed_contour (handle) != 0;
}

public class RawIterator : IDisposable {
Expand Down
2 changes: 1 addition & 1 deletion binding/Binding/SkiaApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ internal static class SkiaApi
[DllImport (SKIA, CallingConvention = CallingConvention.Cdecl)]
public extern static int sk_path_iter_is_close_line (sk_path_iterator_t iterator);
[DllImport (SKIA, CallingConvention = CallingConvention.Cdecl)]
public extern static int sk_path_iter_is_closed_countour (sk_path_iterator_t iterator);
public extern static int sk_path_iter_is_closed_contour (sk_path_iterator_t iterator);
[DllImport (SKIA, CallingConvention = CallingConvention.Cdecl)]
public extern static void sk_path_iter_destroy (sk_path_t path);

Expand Down

0 comments on commit acd9f82

Please sign in to comment.