normalizing eof for everything
diff --git a/examples/alternative_macros/main.cpp b/examples/alternative_macros/main.cpp
index 20cf249..9017111 100644
--- a/examples/alternative_macros/main.cpp
+++ b/examples/alternative_macros/main.cpp
@@ -1,19 +1,19 @@
-#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN

-#include "doctest_proxy.h"

-

-#include <cstdio>

-

-my_testcase("custom macros") {

-    printf("Hello world!\n");

-    

-    my_check(1 == 1);

-    

-    my_subcase("bar") {

-        my_subcase("foo") {}

-        my_subcase("baz") {}

-        

-        my_require(5 > 3);

-    }

-    

-    // CHECK(1 == 1); <== ERROR - the default short macros are disabled from the proxy header

-}

+#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+#include "doctest_proxy.h"
+
+#include <cstdio>
+
+my_testcase("custom macros") {
+    printf("Hello world!\n");
+    
+    my_check(1 == 1);
+    
+    my_subcase("bar") {
+        my_subcase("foo") {}
+        my_subcase("baz") {}
+        
+        my_require(5 > 3);
+    }
+    
+    // CHECK(1 == 1); <== ERROR - the default short macros are disabled from the proxy header
+}