From 92bf4e35840161ed0405aae8d38948233007d534 Mon Sep 17 00:00:00 2001 From: Baumann Christian <33223146+chbauman@users.noreply.github.com> Date: Fri, 20 May 2022 15:39:31 +0200 Subject: [PATCH] Fixing inconsistency in example The example is described as "This is an example of how to use the Test5 class", but actually the class "Test7" was used in the example code. --- examples/doxygen/example_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/doxygen/example_test.cpp b/examples/doxygen/example_test.cpp index 581bc4af2..65a158a39 100644 --- a/examples/doxygen/example_test.cpp +++ b/examples/doxygen/example_test.cpp @@ -1,5 +1,5 @@ void main() { - Test7 t; + Test5 t; t.example(); }