Examples: add semicolon after INFO
diff --git a/examples/210-Evt-EventListeners.cpp b/examples/210-Evt-EventListeners.cpp
index 7df93d7..fde51c7 100644
--- a/examples/210-Evt-EventListeners.cpp
+++ b/examples/210-Evt-EventListeners.cpp
@@ -387,16 +387,16 @@
REQUIRE( i == 42 );
SECTION("Section 1") {
- INFO("Section 1")
+ INFO("Section 1");
i = 7;
SECTION("Section 1.1") {
- INFO("Section 1.1")
+ INFO("Section 1.1");
REQUIRE( i == 42 );
}
}
SECTION("Section 2") {
- INFO("Section 2")
+ INFO("Section 2");
REQUIRE( i == 42 );
}
WARN("At end of test case");