doc: fix some typos in documentations
authorXishi Qiu <qiuxishi@huawei.com>
Wed, 6 Nov 2013 21:18:21 +0000 (13:18 -0800)
committerJiri Kosina <jkosina@suse.cz>
Mon, 2 Dec 2013 13:45:19 +0000 (14:45 +0100)
Fix some typos in five documentations, no functional change.

Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>
Acked-by: Rob Landley <rob@landley.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Documentation/md.txt
Documentation/rfkill.txt
Documentation/rt-mutex-design.txt
Documentation/static-keys.txt

index fbb2fcbf16b6088bdce40f16544d4eee7c48dcd9..f925666e4342bd115010b4ed095547e4235bcad8 100644 (file)
@@ -533,7 +533,7 @@ also have
       found.  The count in 'mismatch_cnt' is the number of sectors
       that were re-written, or (for 'check') would have been
       re-written.  As most raid levels work in units of pages rather
-      than sectors, this my be larger than the number of actual errors
+      than sectors, this may be larger than the number of actual errors
       by a factor of the number of sectors in a page.
 
    bitmap_set_bits
index 03c9d9299c6b1fb55ed48f89f146d4029b323f22..f430004df73c06eb9b8a3f595899cf078360a88d 100644 (file)
@@ -71,7 +71,7 @@ To create an rfkill driver, driver's Kconfig needs to have
        depends on RFKILL || !RFKILL
 
 to ensure the driver cannot be built-in when rfkill is modular. The !RFKILL
-case allows the driver to be built when rfkill is not configured, which which
+case allows the driver to be built when rfkill is not configured, which
 case all rfkill API can still be used but will be provided by static inlines
 which compile to almost nothing.
 
index a5bcd7f5c33fb4d1d818c35b2044b0382179d013..8666070d31896eeb0c54f820189b14d95bd1833d 100644 (file)
@@ -30,7 +30,7 @@ is something called unbounded priority inversion.  That is when the high
 priority process is prevented from running by a lower priority process for
 an undetermined amount of time.
 
-The classic example of unbounded priority inversion is were you have three
+The classic example of unbounded priority inversion is where you have three
 processes, let's call them processes A, B, and C, where A is the highest
 priority process, C is the lowest, and B is in between. A tries to grab a lock
 that C owns and must wait and lets C run to release the lock. But in the
index 9f5263d3152ccff97605234c8b0fe0417b160c59..c4407a41b0fc066b750ed5013db196ba3343bece 100644 (file)
@@ -116,7 +116,7 @@ The branch(es) can then be switched via:
        static_key_slow_dec(&key);
 
 Thus, 'static_key_slow_inc()' means 'make the branch true', and
-'static_key_slow_dec()' means 'make the the branch false' with appropriate
+'static_key_slow_dec()' means 'make the branch false' with appropriate
 reference counting. For example, if the key is initialized true, a
 static_key_slow_dec(), will switch the branch to false. And a subsequent
 static_key_slow_inc(), will change the branch back to true. Likewise, if the
@@ -236,7 +236,7 @@ label case adds:
 
 If we then include the padding bytes, the jump label code saves, 16 total bytes
 of instruction memory for this small function. In this case the non-jump label
-function is 80 bytes long. Thus, we have have saved 20% of the instruction
+function is 80 bytes long. Thus, we have saved 20% of the instruction
 footprint. We can in fact improve this even further, since the 5-byte no-op
 really can be a 2-byte no-op since we can reach the branch with a 2-byte jmp.
 However, we have not yet implemented optimal no-op sizes (they are currently