Skip to content

Commit 81c6526

Browse files
Fix typo in Sys.total_memory docstring. (JuliaLang#53301)
Fixes JuliaLang#53298.
1 parent f8d5947 commit 81c6526

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/sysinfo.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ free_memory() = ccall(:uv_get_available_memory, UInt64, ())
358358
359359
Get the total memory in RAM (including that which is currently used) in bytes.
360360
This amount may be constrained, e.g., by Linux control groups. For the unconstrained
361-
amount, see `Sys.physical_memory()`.
361+
amount, see `Sys.total_physical_memory()`.
362362
"""
363363
function total_memory()
364364
constrained = ccall(:uv_get_constrained_memory, UInt64, ())

0 commit comments

Comments
 (0)