Skip to content

Commit 9aea0af

Browse files
committed
fix typo
1 parent ae94d23 commit 9aea0af

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ Key points:
5252
- [Variables](#variables)
5353
- [Functions](#functions)
5454
- [How to print a user-defined type with cpp-dump](#how-to-print-a-user-defined-type-with-cpp-dump)
55-
- [Method 1. Use CPP\_DUMP\_DEFINE\_EXPORT\_OBJECT() macro](#method-1-use-cpp_dump_define_export_object-macro)
56-
- [Method 2. Use CPP\_DUMP\_DEFINE\_EXPORT\_OBJECT\_GENERIC() macro](#method-2-use-cpp_dump_define_export_object_generic-macro)
55+
- [Method 1. Use CPP_DUMP_DEFINE_EXPORT_OBJECT() macro](#method-1-use-cpp_dump_define_export_object-macro)
56+
- [Method 2. Use CPP_DUMP_DEFINE_EXPORT_OBJECT_GENERIC() macro](#method-2-use-cpp_dump_define_export_object_generic-macro)
5757
- [Method 3. Define `std::ostream& operator<<(std::ostream&, const T &)` operator](#method-3-define-stdostream-operatorstdostream-const-t--operator)
5858
- [Customize `[dump]`](#customize-dump)
5959
- [Formatting with manipulators](#formatting-with-manipulators)
@@ -89,7 +89,8 @@ cpp_dump(my_vector);
8989
### A wide variety of supported types
9090
9191
cpp-dump supports a wide variety of types. Also, it supports nested containers of any combination of the types. Their string representation is similar to JavaScript, Python, and C++ syntax, which is easy to read.
92-
[See All Supported Types](#supported-types) [See Full Example Code](./readme/supports-various-types.cpp)
92+
[See All Supported Types](#supported-types)
93+
[See Full Example Code](./readme/supports-various-types.cpp)
9394
9495
```cpp
9596
// See the full example code for the definitions of the variables.

0 commit comments

Comments
 (0)