From dfa071582bdb6c67c5a1b94c1850497eb93543e8 Mon Sep 17 00:00:00 2001 From: player-03 Date: Thu, 17 Oct 2024 02:22:41 -0400 Subject: [PATCH] Fix typo. --- std/haxe/macro/Type.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/haxe/macro/Type.hx b/std/haxe/macro/Type.hx index 4e2a20deb8b..5008995c3b9 100644 --- a/std/haxe/macro/Type.hx +++ b/std/haxe/macro/Type.hx @@ -612,7 +612,7 @@ typedef MetaAccess = { */ enum FieldKind { /** - A variable of property, depending on the `read` and `write` values. + A variable or property, depending on the `read` and `write` values. **/ FVar(read:VarAccess, write:VarAccess);