[ox] Update docs
All checks were successful
Build / build (push) Successful in 1m10s

This commit is contained in:
2026-01-21 21:04:17 -06:00
parent bdf7755ee2
commit 689da4a019

7
deps/ox/ox-docs.md vendored
View File

@@ -323,9 +323,10 @@ struct Type {
void f() {
ox::String s{"asdf"};
Type t1{"asdf"}; // valid
Type t2{s}; // valid
Type t3{std::move(s)}; // valid
Type t1{"asdf"}; // valid
Type t2{s}; // valid
Type t3{std::move(s)}; // valid
Type t4{ox::String{"asdf"}}; // valid
}
```