docs/process: fix typos
authorAndrew Kreimer <algonell@gmail.com>
Sat, 7 Sep 2024 12:21:39 +0000 (15:21 +0300)
committerJonathan Corbet <corbet@lwn.net>
Tue, 10 Sep 2024 21:16:28 +0000 (15:16 -0600)
Fix typos in documentation.

Signed-off-by: Andrew Kreimer <algonell@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20240907122534.15998-1-algonell@gmail.com>

Documentation/process/coding-style.rst
Documentation/process/maintainer-tip.rst

index 8e30c8f..19d2ed4 100644 (file)
@@ -986,7 +986,7 @@ that can go into these 5 milliseconds.
 
 A reasonable rule of thumb is to not put inline at functions that have more
 than 3 lines of code in them. An exception to this rule are the cases where
-a parameter is known to be a compiletime constant, and as a result of this
+a parameter is known to be a compile time constant, and as a result of this
 constantness you *know* the compiler will be able to optimize most of your
 function away at compile time. For a good example of this later case, see
 the kmalloc() inline function.
index ba31234..349a27a 100644 (file)
@@ -154,7 +154,7 @@ Examples for illustration:
 
     We modify the hot cpu handling to cancel the delayed work on the dying
     cpu and run the worker immediately on a different cpu in same domain. We
-    donot flush the worker because the MBM overflow worker reschedules the
+    do not flush the worker because the MBM overflow worker reschedules the
     worker on same CPU and scans the domain->cpu_mask to get the domain
     pointer.