Skip to content

Commit 94efa59

Browse files
nidindcodeIO
authored andcommitted
Fix docs on KEY_SIGNED and KEY_FLOAT rtti flags (AssemblyScript#698)
1 parent d68c266 commit 94efa59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

std/assembly/shared/typeinfo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ export const enum TypeinfoFlags {
6363
KEY_ALIGN_3 = 1 << 17,
6464
/** Key alignment of 16 bytes. */
6565
KEY_ALIGN_4 = 1 << 18,
66-
/** Value is a signed type. */
66+
/** Key is a signed type. */
6767
KEY_SIGNED = 1 << 19,
68-
/** Value is a float type. */
68+
/** Key is a float type. */
6969
KEY_FLOAT = 1 << 20,
7070
/** Key type is nullable. */
7171
KEY_NULLABLE = 1 << 21,

0 commit comments

Comments
 (0)