From a1a0543671b6f8ca9e249fdccd2d1c5ea41755b8 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Tue, 3 Oct 2023 10:17:38 +0100 Subject: [PATCH] doc: Fix spelling Spell check failed with: ``` [kata-spell-check.sh:275] WARNING: Word 'overcommitment': did you mean one of the following?: over commitment, over-commitment, commitment ``` So update this to pass the static checks Fixes: # Signed-off-by: stevenhorsman --- docs/how-to/how-to-use-virtio-mem-with-kata.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to/how-to-use-virtio-mem-with-kata.md b/docs/how-to/how-to-use-virtio-mem-with-kata.md index 40465bbe53..878d73a212 100644 --- a/docs/how-to/how-to-use-virtio-mem-with-kata.md +++ b/docs/how-to/how-to-use-virtio-mem-with-kata.md @@ -29,7 +29,7 @@ Then you can build and install the guest kernel image as shown [here](../../tool ## Run a Kata Container utilizing `virtio-mem` -Use following command to enable memory overcommitment of a Linux kernel. Because QEMU `virtio-mem` device need to allocate a lot of memory. +Use following command to enable memory over-commitment of a Linux kernel. Because QEMU `virtio-mem` device need to allocate a lot of memory. ``` $ echo 1 | sudo tee /proc/sys/vm/overcommit_memory ```