From c6716f5e9f7863ae6a5f65114de58fd940a0f39a Mon Sep 17 00:00:00 2001 From: uusdnfdsfhnttyh <142380608+uusdnfdsfhnttyh@users.noreply.github.com> Date: Fri, 5 Jan 2024 03:11:08 -0600 Subject: [PATCH] Fixed typo (#7197) --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 012d2ce43ff9..c86cc1368bbe 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -426,7 +426,7 @@ Finally, you may call `ImGui::ShowMetricsWindow()` to explore/visualize/understa ### Q: How can I use maths operators with ImVec2? -We do not export maths operators by default in imgui.h in order to not conflict with the use of your own maths types and maths operators. As a convenience, you may use `#defne IMGUI_DEFINE_MATH_OPERATORS` + `#include "imgui.h"` to access our basic maths operators. +We do not export maths operators by default in imgui.h in order to not conflict with the use of your own maths types and maths operators. As a convenience, you may use `#define IMGUI_DEFINE_MATH_OPERATORS` + `#include "imgui.h"` to access our basic maths operators. ##### [Return to Index](#index)