From 5f194b88294728cf15100e408623e6948f59ecd9 Mon Sep 17 00:00:00 2001 From: Axen Date: Sat, 1 Jun 2024 00:32:54 +0300 Subject: [PATCH] Update docs on nested maps --- docs/Using.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/Using.md b/docs/Using.md index 12a174d..26bab0a 100644 --- a/docs/Using.md +++ b/docs/Using.md @@ -206,8 +206,7 @@ In the code above we have a simple packet transmission protocol which contains t ## Maps You can define maps using the `map` keyword > [!NOTE] -> Maps cannot currently have maps as keys or values. -> You also cannot have optional keys or values as there is no way to represent those in Luau. +> Maps cannot have optional keys or values as there is no way to represent those in Luau. ``` map Example = {[string]: u8} ```