Browse Source

doc: backslash typo in FAQ (#532)

Sackhorn 6 năm trước cách đây
mục cha
commit
1d9b26d9ec
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      docs/md/faq.md

+ 1 - 1
docs/md/faq.md

@@ -128,7 +128,7 @@ here is a workaround in the form of a macro:
 
 ```cpp
 #if defined(_MSC_VER)
-#define HS(str) __pragma(warning(suppress:4307)) entt::hashed_string{str}\
+#define HS(str) __pragma(warning(suppress:4307)) entt::hashed_string{str}
 #else
 #define HS(str) entt::hashed_string{str}
 #endif