Skip to content

Commit 1782399

Browse files
authored
typo
1 parent 17c2d06 commit 1782399

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

base/genericmemory.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -426,8 +426,8 @@ end
426426
"""
427427
allocatedinline(::Type{T}) :: Bool
428428
429-
Returns whether an object of type `T` is able to be inline allocated inside of enclosing structs or arrays,
430-
of if it must be allocated as a reference. Generally, types which are immutable and whose instances have a
429+
Returns whether an object of type `T` is able to be stored inline inside of enclosing structs or arrays,
430+
or if it must be allocated as a reference. Generally, types which are immutable and whose instances have a
431431
finite, statically determinable size can be allocated inline, whereas everything else is allocated using
432432
reference pointers.
433433
@@ -472,7 +472,7 @@ allocatedinline(@nospecialize T::Type) = (@_total_meta; ccall(:jl_stored_inline,
472472
"""
473473
Base.isbitsunion(::Type{T})
474474
475-
Return whether a type is an "is-bits" Union type, meaning each type included in a Union is [`isbitstype`](@ref).
475+
Returns whether a type is an "is-bits" Union type, meaning each type included in a Union is [`isbitstype`](@ref).
476476
477477
# Examples
478478
```jldoctest

0 commit comments

Comments
 (0)