Skip to content

Commit e8ad60c

Browse files
Fix typo (ocornut#8382)
1 parent 50dbb08 commit e8ad60c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imgui.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3132,7 +3132,7 @@ struct ImDrawList
31323132

31333133
// General polygon
31343134
// - Only simple polygons are supported by filling functions (no self-intersections, no holes).
3135-
// - Concave polygon fill is more expensive than convex one: it has O(N^2) complexity. Provided as a convenience fo user but not used by main library.
3135+
// - Concave polygon fill is more expensive than convex one: it has O(N^2) complexity. Provided as a convenience for the user but not used by the main library.
31363136
IMGUI_API void AddPolyline(const ImVec2* points, int num_points, ImU32 col, ImDrawFlags flags, float thickness);
31373137
IMGUI_API void AddConvexPolyFilled(const ImVec2* points, int num_points, ImU32 col);
31383138
IMGUI_API void AddConcavePolyFilled(const ImVec2* points, int num_points, ImU32 col);

0 commit comments

Comments
 (0)