diff --git a/std/comptime/type.jule b/std/comptime/type.jule index 61a751dd8..77f9fbcc8 100644 --- a/std/comptime/type.jule +++ b/std/comptime/type.jule @@ -115,7 +115,7 @@ impl comptimeTypeInfo { // Supports only map types. fn Value(self): comptimeTypeInfo - // Returns field informations for type. + // Returns field information for type. // Supports only structure and enum types. fn Fields(self): comptimeStructFields | comptimeEnumFields diff --git a/std/jule/importer/importer.jule b/std/jule/importer/importer.jule index 2ca164cfd..dc0a247ea 100644 --- a/std/jule/importer/importer.jule +++ b/std/jule/importer/importer.jule @@ -24,7 +24,7 @@ fn readBuff(path: str): []byte { } // Make compiler error, just text. -// Not includes row, column, and etc. informations. +// Does not includes information about row, column, and etc. fn flatCompilerErr(text: str): build::Log { ret build::Log{ Kind: build::LogKind.Error, diff --git a/std/jule/types/bits.jule b/std/jule/types/bits.jule index 57b4e40e5..c5d485ac4 100644 --- a/std/jule/types/bits.jule +++ b/std/jule/types/bits.jule @@ -210,7 +210,7 @@ fn BitSizeOfUint(x: u64): int { } } -// Updates platform-specific informations by target. +// Updates platform-specific information based on the target. // If you will update target configuration, you should call this function. // In other words, new configurations is not applied for types. fn UpdateTarget() { diff --git a/std/runtime/malloc.jule b/std/runtime/malloc.jule index 579891533..fcf29901c 100644 --- a/std/runtime/malloc.jule +++ b/std/runtime/malloc.jule @@ -13,7 +13,7 @@ cpp fn malloc(uint): *unsafe // _64bit = 1 on 64-bit systems, 0 on 32-bit systems const _64bit = 1 << (^uintptr(0) >> 63) / 2 -// The informations of the comment is heavily adopted from the Go programming language. +// The information in the comment is heavily adapted from the Go programming language. // // The number of bits in a heap address. On amd64, addresses are sign-extended // beyond heapAddrBits. On other arches, they are zero-extended.