Documentation: fix spelling in design-patterns
authorLinus Walleij <linus.walleij@linaro.org>
Thu, 12 Dec 2013 14:27:12 +0000 (15:27 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Dec 2013 18:10:32 +0000 (10:10 -0800)
This fixes two spelling mistakes in the design pattern doc.

Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Documentation/driver-model/design-patterns.txt

index 9ef8c16..ba7b2df 100644 (file)
@@ -66,7 +66,7 @@ your interrupt handler.
 2. container_of()
 ~~~~~~~~~~~~~~~~~
 
-Continuing on the above example we add a offloaded work:
+Continuing on the above example we add an offloaded work:
 
 struct foo {
     spinlock_t lock;
@@ -99,7 +99,7 @@ static int foo_probe(...)
     (...)
 }
 
-The design pattern is the same for a a hrtimer or something similar that will
+The design pattern is the same for an hrtimer or something similar that will
 return a single argument which is a pointer to a struct member in the
 callback.