[ox] Update docs

(synced from 689da4a019)
This commit is contained in:
2026-01-21 21:04:17 -06:00
parent a0272a59a6
commit afa7e53126
+4 -3
View File
@@ -323,9 +323,10 @@ struct Type {
void f() { void f() {
ox::String s{"asdf"}; ox::String s{"asdf"};
Type t1{"asdf"}; // valid Type t1{"asdf"}; // valid
Type t2{s}; // valid Type t2{s}; // valid
Type t3{std::move(s)}; // valid Type t3{std::move(s)}; // valid
Type t4{ox::String{"asdf"}}; // valid
} }
``` ```