From c7d64ef0383ec378f79bfedef311dea0fe2a2f93 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 12 Feb 2024 12:47:17 -0400 Subject: [PATCH] Fix typo in `Sys.total_memory` docstring. Fixes #53298. Can someone with the right permissions add a backport 1.10 label? --- 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, ())