You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -170,12 +170,12 @@ RTL provides the following callable entities, designed to be as lightweight and
170
170
171
171
These callable types are regular value types: they can be copied, moved, stored in standard containers, and passed around like any other lightweight object.
172
172
173
-
When invoked, only type-erased callables return an `rtl::error`, with results provided as `rtl::RObject` when both the return and target types are erased or as `std::optional<T>` when only the target type is erased, while fully type-aware callables return `T` directly with no error (by design).
173
+
When invoked, only type-erased callables return an `rtl::error`, with results provided as `rtl::RObject`*(when both the return and target types are erased)* or as `std::optional<T>`*(when only the target type is erased)*, while fully type-aware callables return `T` directly with no error (by design).
174
174
175
175
### How to Build (Windows / Linux)
176
176
```sh
177
177
mkdir build &&cd build
178
-
cmake -G "<Generator>"# Use a C++20-compatible compiler
178
+
cmake ../ -G "<Generator>"# Use a C++20-compatible compiler
0 commit comments