From 0271c0e86d37e456423d44a7b25a71e05c102729 Mon Sep 17 00:00:00 2001 From: khtsly Date: Sat, 14 Feb 2026 14:32:35 +0700 Subject: [PATCH] chore(docs): update buffer.md --- docs/api/1.1/buffer.md | 43 ++++++++++++++++++++---------------------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/docs/api/1.1/buffer.md b/docs/api/1.1/buffer.md index be79447..c16fcb2 100644 --- a/docs/api/1.1/buffer.md +++ b/docs/api/1.1/buffer.md @@ -22,32 +22,29 @@ Define strict data schemas for optimized serialization and type safety. "nil", -- Numeric types - "uint8", - "uint16", - "uint32", - "int8", - "int16", - "int32", - "float32", - "float64", + "u8", + "u16", + "u32", + "i8", + "i16", + "i32", + "f16", + "f32", + "f64", -- Roblox types "buffer" - "Vector2", - "Vector3", - "CFrame", - "Color3", - "BrickColor", - "Instance", - "EnumItem", - "Enum", - "UDim2", - "UDim", - "Rect", - "NumberRange", - "Ray", - "ColorSequence", - "NumberSequence", + "vector2", + "vector3", + "cframe", + "color3", + "instance", + + -- other types + "optional", + "array", + "map", + "struct", } ```