Skip to content

Commit e875ca7

Browse files
suggestions
1 parent fd9214e commit e875ca7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ generate_markdown("NEWS")
161161
Manual = [
162162
"manual/getting-started.md",
163163
"manual/installation.md",
164-
"manual/memory-management.md",
165164
"manual/variables.md",
166165
"manual/integers-and-floating-point-numbers.md",
167166
"manual/mathematical-operations.md",
@@ -193,6 +192,7 @@ Manual = [
193192
"manual/code-loading.md",
194193
"manual/profile.md",
195194
"manual/stacktraces.md",
195+
"manual/memory-management.md",
196196
"manual/performance-tips.md",
197197
"manual/workflow-tips.md",
198198
"manual/style-guide.md",

doc/src/manual/memory-management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ If your system has limited or no swap space, you may experience out-of-memory er
3535
You can provide a hint to Julia about the maximum amount of memory to use:
3636

3737
```bash
38-
julia --heap-size-hint=4G # Limit heap to ~4GB
39-
julia --heap-size-hint=50% # Use up to 50% of physical memory
38+
julia --heap-size-hint=4G # To set the hint to ~4GB
39+
julia --heap-size-hint=50% # or to 50% of physical memory
4040
```
4141

4242
The `--heap-size-hint` option tells the garbage collector to trigger collection more aggressively when approaching the specified limit. This is particularly useful in:

0 commit comments

Comments
 (0)