From d9cafa759f53d3c93a4f6dc771961113251653ea Mon Sep 17 00:00:00 2001 From: Hossein Abbasi <16090309+hsnabszhdn@users.noreply.github.com> Date: Sat, 23 Aug 2025 16:14:53 +1000 Subject: [PATCH] docs: add missing backticks in 'run.md' Signed-off-by: Hossein Abbasi <16090309+hsnabszhdn@users.noreply.github.com> --- docs/reference/run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/run.md b/docs/reference/run.md index db06ad71f6..f63678f191 100644 --- a/docs/reference/run.md +++ b/docs/reference/run.md @@ -419,7 +419,7 @@ $ docker run -it -m 300M ubuntu:24.04 /bin/bash We set memory limit only, this means the processes in the container can use 300M memory and 300M swap memory, by default, the total virtual memory size -(--memory-swap) will be set as double of memory, in this case, memory + swap +(`--memory-swap`) will be set as double of memory, in this case, memory + swap would be 2*300M, so processes can use 300M swap memory as well. ```console