From 6248626e99f48642a10357aaf7b9bda539b504c0 Mon Sep 17 00:00:00 2001 From: Xinli Shang Date: Mon, 29 Dec 2025 14:09:20 -0800 Subject: [PATCH] fix: correct grammar errors in schema.h comment - Fix typo: 'wil' -> 'will' - Fix grammar: 'a structs' -> 'a struct' - Fix verb agreement: 'value include' -> 'value includes' --- src/iceberg/schema.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iceberg/schema.h b/src/iceberg/schema.h index deda7e840..a2686c9f7 100644 --- a/src/iceberg/schema.h +++ b/src/iceberg/schema.h @@ -79,7 +79,7 @@ class ICEBERG_EXPORT Schema : public StructType { /// Short names for maps and lists are included for any name that does not conflict with /// a canonical name. For example, a list, 'l', of structs with field 'x' will produce /// short name 'l.x' in addition to canonical name 'l.element.x'. A map 'm', if its - /// value include a structs with field 'x' wil produce short name 'm.x' in addition to + /// value includes a struct with field 'x' will produce short name 'm.x' in addition to /// canonical name 'm.value.x'. /// FIXME: Currently only handles ASCII lowercase conversion; extend to support /// non-ASCII characters (e.g., using std::towlower or ICU)