Skip to content

Commit b1ea4ce

Browse files
committed
[Doc] Fix javadoc
1 parent 68b36de commit b1ea4ce

File tree

1 file changed

+2
-2
lines changed
  • imgui-binding/src/main/java/imgui/extension/implot

1 file changed

+2
-2
lines changed

imgui-binding/src/main/java/imgui/extension/implot/ImPlot.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ public static <T extends Number> void plotHLines(final String labelID, final T[]
558558
*/
559559

560560
/**
561-
* Plots a pie chart. If the sum of values > 1, each value will be normalized. Center and radius are in plot units. #label_fmt can be set to NULL for no labels.
561+
* Plots a pie chart. If the sum of values {@code >} 1, each value will be normalized. Center and radius are in plot units. #label_fmt can be set to NULL for no labels.
562562
* Due to conversion from T to double, extremely large 64-bit integer (long) values may lose data!
563563
*/
564564
public static <T extends Number> void plotPieChart(final String[] labelIDs, final T[] values, final double x, final double y, final double radius) {
@@ -1589,7 +1589,7 @@ public static ImVec4 nextColormapColor() {
15891589
*/
15901590

15911591
/**
1592-
* Returns a color from a colormap given an index >= 0 (modulo will be performed).
1592+
* Returns a color from a colormap given an index {@code >=} 0 (modulo will be performed).
15931593
*/
15941594
public static ImVec4 getColormapColor(final int idx, final int cmap) {
15951595
final ImVec4 vec = new ImVec4();

0 commit comments

Comments
 (0)