Skip to content

Commit e5a8410

Browse files
authored
Fix two typos (#797)
Signed-off-by: Alexander Seiler <[email protected]>
1 parent 9b6b461 commit e5a8410

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/src/devdocs/relocatable_part_3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
!!! info
44
This section is for people who want to understand PackageCompiler.jl under
5-
the hood. It is not required reading to use the pacakge.
5+
the hood. It is not required reading to use the package.
66

77
In the previous tutorials, we created a custom sysimage and a binary (app) that
88
did some simple CSV parsing with an (depending on the exact demands) acceptable

src/PackageCompiler.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ function create_fresh_base_sysimage(stdlibs::Vector{String}; cpu_target::String,
223223
compiler_source_path = joinpath(base_dir, "compiler", "compiler.jl")
224224

225225
# we can't strip the IR from the base sysimg, so we filter out this flag
226-
# also presuambly `--compile=all`` and maybe a few others we missed here...
226+
# also presumably `--compile=all` and maybe a few others we missed here...
227227
sysimage_build_args_strs = map(p -> "$(p...)", values(sysimage_build_args))
228228
filter!(p -> !contains(p, "--compile") && p ̸ ("--strip-ir",), sysimage_build_args_strs)
229229
sysimage_build_args = Cmd(sysimage_build_args_strs)

0 commit comments

Comments
 (0)