From b83c473db5bde01c330ebe7c4a7aa1804f014752 Mon Sep 17 00:00:00 2001 From: Ardi <113623122+hardlyardi@users.noreply.github.com> Date: Fri, 7 Mar 2025 09:01:20 -0600 Subject: [PATCH] small consistency/grammar change --- docs/eager-inference-annotations-for-polymorphic-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/eager-inference-annotations-for-polymorphic-types.md b/docs/eager-inference-annotations-for-polymorphic-types.md index 18d277d..74455ed 100644 --- a/docs/eager-inference-annotations-for-polymorphic-types.md +++ b/docs/eager-inference-annotations-for-polymorphic-types.md @@ -37,7 +37,7 @@ test(1, "string") -- TypeError: Expected `number`, got `string` ## Drawbacks -- Introduces a new syntax modifier (`T!`), which may lead to a symbol soup, but it doesn't seem too shabby next to `T?`. +- Introduces a new syntax modifier `!`, which may lead to a symbol soup. However, `T!` doesn't seem too shabby next to `T?`. - Introduces a simple change to luau's parser, marginally increasing parsing complexity. ## Alternatives