From 1f9e0d29654044a96764e48a059e9498366a7cd1 Mon Sep 17 00:00:00 2001 From: Alice Jacka Date: Wed, 8 Jan 2025 16:26:46 +1100 Subject: [PATCH] Correct typo in style.md I know, it's a single char typo, but it confused me :P --- style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.md b/style.md index 2b71955..23871b1 100644 --- a/style.md +++ b/style.md @@ -25,7 +25,7 @@ is matched by the regular expression `[$\w]+`. | Style | Category | | ---------------- | -------------------------------------------------- | -| `UpperCamelCase` | class / interface / type / enum / decorator / type / parameters | +| `UpperCamelCase` | class / interface / type / enum / decorator / type parameters | | `lowerCamelCase` | variable / parameter / function / method / property / module alias | | `CONSTANT_CASE` | global constant values, including enum values | | `#ident` | private identifiers are never used. |