Skip to content

Commit 68d4451

Browse files
authored
Update README.md
1 parent d2b9aff commit 68d4451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ auto cxx_mirror = rtl::CxxMirror({
6565
rtl::type().member<Person>().method("getName").build(Person::getName)
6666
});
6767
```
68-
The `cxx_mirror` object is your gateway to runtime reflection — it lets you query, introspect, and even instantiate types without any compile-time knowledge or static coupling. It can live anywhere — in any translation unit, quietly sitting in a corner of your codebase. All you need is to expose the `cxx_mirror` wherever reflection is required.
68+
The `cxx_mirror` object is your gateway to runtime reflection — it lets you query, introspect, and even instantiate types without any compile-time knowledge. It can live anywhere — in any translation unit, quietly sitting in a corner of your codebase. All you need is to expose the `cxx_mirror` wherever reflection is required.
6969

7070
And what better way to do that than a **Singleton**:
7171
```c++

0 commit comments

Comments
 (0)