From 81c652640ecfa5215781bf398bbf57b67ec3d616 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 12 Feb 2024 14:44:06 -0400 Subject: [PATCH] Fix typo in `Sys.total_memory` docstring. (#53301) Fixes #53298. --- base/sysinfo.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/sysinfo.jl b/base/sysinfo.jl index 69ee93864aadc..97e5e2a71bcbc 100644 --- a/base/sysinfo.jl +++ b/base/sysinfo.jl @@ -358,7 +358,7 @@ free_memory() = ccall(:uv_get_available_memory, UInt64, ()) Get the total memory in RAM (including that which is currently used) in bytes. This amount may be constrained, e.g., by Linux control groups. For the unconstrained -amount, see `Sys.physical_memory()`. +amount, see `Sys.total_physical_memory()`. """ function total_memory() constrained = ccall(:uv_get_constrained_memory, UInt64, ())