From afa7e53126b63afde7b92527f5e52a7ef70cbeec Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 21 Jan 2026 21:04:17 -0600 Subject: [PATCH] [ox] Update docs (synced from 689da4a019dbfed6b70a67d2ff6591aa27c20d53) --- ox-docs.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ox-docs.md b/ox-docs.md index 6be14ae62..98527099f 100644 --- a/ox-docs.md +++ b/ox-docs.md @@ -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 } ```