mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/2] Doc: treewide: Fix grammar "a" to "an"
@ 2015-12-09 15:59 Masanari Iida
  2015-12-09 15:59 ` [PATCH 2/2] Doc:devicetree/ti: Fix typo in ti Masanari Iida
  2015-12-10 18:38 ` [PATCH 1/2] Doc: treewide: Fix grammar "a" to "an" Jonathan Corbet
  0 siblings, 2 replies; 3+ messages in thread
From: Masanari Iida @ 2015-12-09 15:59 UTC (permalink / raw)
  To: rdunlap, corbet, linux-doc, linux-kernel; +Cc: Masanari Iida

This patch fix some grammar mistake.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 Documentation/filesystems/sharedsubtree.txt | 2 +-
 Documentation/vm/slub.txt                   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/filesystems/sharedsubtree.txt b/Documentation/filesystems/sharedsubtree.txt
index 32a173d..e3f4c77 100644
--- a/Documentation/filesystems/sharedsubtree.txt
+++ b/Documentation/filesystems/sharedsubtree.txt
@@ -664,7 +664,7 @@ replicas continue to be exactly same.
 		if one rbind mounts a tree within the same subtree 'n' times
 		the number of mounts created is an exponential function of 'n'.
 		Having unbindable mount can help prune the unneeded bind
-		mounts. Here is a example.
+		mounts. Here is an example.
 
 		step 1:
 		   let's say the root tree has just two directories with
diff --git a/Documentation/vm/slub.txt b/Documentation/vm/slub.txt
index 699d8ea..f0d3409 100644
--- a/Documentation/vm/slub.txt
+++ b/Documentation/vm/slub.txt
@@ -8,7 +8,7 @@ SLUB can enable debugging only for selected slabs in order to avoid
 an impact on overall system performance which may make a bug more
 difficult to find.
 
-In order to switch debugging on one can add a option "slub_debug"
+In order to switch debugging on one can add an option "slub_debug"
 to the kernel command line. That will enable full debugging for
 all slabs.
 
-- 
2.6.4.442.g545299f


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 2/2] Doc:devicetree/ti: Fix typo in ti
  2015-12-09 15:59 [PATCH 1/2] Doc: treewide: Fix grammar "a" to "an" Masanari Iida
@ 2015-12-09 15:59 ` Masanari Iida
  2015-12-10 18:38 ` [PATCH 1/2] Doc: treewide: Fix grammar "a" to "an" Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Masanari Iida @ 2015-12-09 15:59 UTC (permalink / raw)
  To: rdunlap, corbet, linux-doc, linux-kernel; +Cc: Masanari Iida

This patch fix some spelling typos found in
Documentation/devicetree/bindings/clock/ti.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 Documentation/devicetree/bindings/clock/ti/fapll.txt | 2 +-
 Documentation/devicetree/bindings/clock/ti/mux.txt   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/clock/ti/fapll.txt b/Documentation/devicetree/bindings/clock/ti/fapll.txt
index c19b3f2..a05713e 100644
--- a/Documentation/devicetree/bindings/clock/ti/fapll.txt
+++ b/Documentation/devicetree/bindings/clock/ti/fapll.txt
@@ -5,7 +5,7 @@ Binding status: Unstable - ABI compatibility may be broken in the future
 This binding uses the common clock binding[1]. It assumes a
 register-mapped FAPLL with usually two selectable input clocks
 (reference clock and bypass clock), and one or more child
-syntesizers.
+synthesizers.
 
 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
 
diff --git a/Documentation/devicetree/bindings/clock/ti/mux.txt b/Documentation/devicetree/bindings/clock/ti/mux.txt
index 2d0d170..685c23b 100644
--- a/Documentation/devicetree/bindings/clock/ti/mux.txt
+++ b/Documentation/devicetree/bindings/clock/ti/mux.txt
@@ -8,7 +8,7 @@ parents, one of which can be selected as output.  This clock does not
 gate or adjust the parent rate via a divider or multiplier.
 
 By default the "clocks" property lists the parents in the same order
-as they are programmed into the regster.  E.g:
+as they are programmed into the register.  E.g:
 
 	clocks = <&foo_clock>, <&bar_clock>, <&baz_clock>;
 
-- 
2.6.4.442.g545299f


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] Doc: treewide: Fix grammar "a" to "an"
  2015-12-09 15:59 [PATCH 1/2] Doc: treewide: Fix grammar "a" to "an" Masanari Iida
  2015-12-09 15:59 ` [PATCH 2/2] Doc:devicetree/ti: Fix typo in ti Masanari Iida
@ 2015-12-10 18:38 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2015-12-10 18:38 UTC (permalink / raw)
  To: Masanari Iida; +Cc: rdunlap, linux-doc, linux-kernel

On Thu, 10 Dec 2015 00:59:29 +0900
Masanari Iida <standby24x7@gmail.com> wrote:

> This patch fix some grammar mistake.

...except for the one in the changelog! :)

I've applied this one to the docs tree.  I normally treat device tree as
out of my turf, but I can take the other one too if that seems best.

Thanks,

jon

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-12-10 18:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-09 15:59 [PATCH 1/2] Doc: treewide: Fix grammar "a" to "an" Masanari Iida
2015-12-09 15:59 ` [PATCH 2/2] Doc:devicetree/ti: Fix typo in ti Masanari Iida
2015-12-10 18:38 ` [PATCH 1/2] Doc: treewide: Fix grammar "a" to "an" Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®