From d432920439bc99dece2d571253697a7e35ed5df8 Mon Sep 17 00:00:00 2001 From: Josh Pieper Date: Sat, 9 May 2020 09:13:37 -0400 Subject: [PATCH] Fix a trivial documentation copy-paste-o --- implot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implot.h b/implot.h index 0ffbeb7..90fa7f1 100644 --- a/implot.h +++ b/implot.h @@ -228,7 +228,7 @@ void PopPlotStyleVar(int count = 1); void SetNextPlotRange(float x_min, float x_max, float y_min, float y_max, ImGuiCond cond = ImGuiCond_Once); /// Set the X axis range of the next plot. Call right before BeginPlot(). If ImGuiCond_Always is used, the axis will be locked. void SetNextPlotRangeX(float x_min, float x_max, ImGuiCond cond = ImGuiCond_Once); -/// Set the X axis range of the next plot. Call right before BeginPlot(). If ImGuiCond_Always is used, the axis will be locked. +/// Set the Y axis range of the next plot. Call right before BeginPlot(). If ImGuiCond_Always is used, the axis will be locked. void SetNextPlotRangeY(float y_min, float y_max, ImGuiCond cond = ImGuiCond_Once); // Get the current Plot position (top-left) in pixels.