From a1505b24fe1213b3b8260e2c972c96e9e8ba6230 Mon Sep 17 00:00:00 2001 From: Benson Muite Date: Sun, 12 Jul 2026 19:17:03 +0300 Subject: [PATCH] Make more informative missing argument --- g3doc/quick_reference.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/g3doc/quick_reference.md b/g3doc/quick_reference.md index c36794ca16..9e3d9b620f 100644 --- a/g3doc/quick_reference.md +++ b/g3doc/quick_reference.md @@ -2114,8 +2114,9 @@ obtain the `D` that describes the return type. Vec<D> **TruncateTo**(D, V v): returns `v[i]` truncated to the smaller type indicated by `T = TFromD`, with the same result as if the more-significant input bits that do not fit in `T` had been zero. - Example: `ScalableTag du32; Rebind du8; TruncateTo(du8, - Set(du32, 0xF08F))` is the same as `Set(du8, 0x8F)`. + Example: + `ScalableTag du32; Rebind du8q; + TruncateTo(du8q, Set(du32, 0xF08F))` is the same as `Set(du8q, 0x8F)`. * `V`,`D`: (`i16,i8`), (`i32,i8`), (`i64,i8`), (`i32,i16`), (`i64,i16`), (`i64,i32`), (`u16,i8`), (`u32,i8`), (`u64,i8`), (`u32,i16`), (`u64,i16`),