Skip to content

Commit f2014b2

Browse files
authored
Fix a few typos (#701)
also expand OSes, arguably easier to understand
1 parent d9b09ee commit f2014b2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/src/devdocs/binaries_part_2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ calling into the Julia runtime library (`libjulia`) from a C program. A quite
1414
detail set of docs for how this is done can be found at the [embedding chapter
1515
in the Julia manual](https://docs.julialang.org/en/v1/manual/embedding/) and it
1616
is recommended to read before reading on. Since this is supposed to highlight
17-
the interals of PackageCompiler, will not use the conveniences shown in that
17+
the internals of PackageCompiler, will not use the conveniences shown in that
1818
section (e.g. the `julia-config.jl` script) but it is good to know they exist.
1919

2020
A rough outline of the steps we will take to create an executable are:
@@ -96,7 +96,7 @@ julia --startup-file=no --trace-compile=app_precompile.jl MyApp.jl "FL_insurance
9696

9797
The `custom_sysimage.jl` script look similar to before with the exception that
9898
we added an include of the app file inside the anonymous module where the
99-
precompiliation statements are evaluated in:
99+
precompilation statements are evaluated in:
100100

101101
```julia
102102
Base.init_depot_path()

docs/src/devdocs/relocatable_part_3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ The plan is that on macOS and Linux the files are structured as:
209209
On Windows, we will just store everything in `bin` due to no convenient way of using `RPATH`.
210210

211211
We create a new folder `lib` and copy the libraries into it (and remove the
212-
sysimage, since we will create cusom sysimage anyway):
212+
sysimage, since we will create custom sysimage anyway):
213213

214214
```
215215
~/MyApp

docs/src/libs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Here you have different options depending on your operating system and needs.
8787

8888
1. Install the libraries in a non-standard location, and update an appropriate environment
8989
variable to point to the library location.
90-
* On Linux and other Unix-like OSes, run `export LD_LIBRARY_PATH=/path/to/lib:$LD_LIBRARY_PATH`
90+
* On Linux and other Unix-like operating systems, run `export LD_LIBRARY_PATH=/path/to/lib:$LD_LIBRARY_PATH`
9191
* On Mac, run `export DYLD_FALLBACK_LIBRARY_PATH=/path/to/lib:$DYLD_FALLBACK_LIBRARY_PATH`
9292
* On Windows, include the library location in `PATH`. (* NOTE: not tested--does this work? *)
9393

0 commit comments

Comments
 (0)