]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
docs: device-mapper: fixed spelling mistakes in documentation
authorSoham Metha <sohammetha01@gmail.com>
Tue, 12 Aug 2025 20:49:47 +0000 (02:19 +0530)
committerMikulas Patocka <mpatocka@redhat.com>
Tue, 19 Aug 2025 09:12:50 +0000 (11:12 +0200)
found/fixed the following typos

- flushs -> flushes

in `Documentation/admin-guide/device-mapper/delay.rst`

Signed-off-by: Soham Metha <sohammetha01@gmail.com>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Documentation/admin-guide/device-mapper/delay.rst

index 982136160d6f9878bd7729551fcecc1cebbfc9f1..a1e673c0e782c52939901aefea44e17a873ca7e9 100644 (file)
@@ -3,7 +3,7 @@ dm-delay
 ========
 
 Device-Mapper's "delay" target delays reads and/or writes
-and/or flushs and optionally maps them to different devices.
+and/or flushes and optionally maps them to different devices.
 
 Arguments::
 
@@ -40,7 +40,7 @@ Example scripts
        #!/bin/sh
        #
        # Create mapped device delaying write and flush operations for 400ms and
-       # splitting reads to device $1 but writes and flushs to different device $2
+       # splitting reads to device $1 but writes and flushes to different device $2
        # to different offsets of 2048 and 4096 sectors respectively.
        #
        dmsetup create delayed --table "0 `blockdev --getsz $1` delay $1 2048 0 $2 4096 400"
@@ -48,7 +48,7 @@ Example scripts
 ::
        #!/bin/sh
        #
-       # Create mapped device delaying reads for 50ms, writes for 100ms and flushs for 333ms
+       # Create mapped device delaying reads for 50ms, writes for 100ms and flushes for 333ms
        # onto the same backing device at offset 0 sectors.
        #
        dmsetup create delayed --table "0 `blockdev --getsz $1` delay $1 0 50 $2 0 100 $1 0 333"