All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Minor documentation typo fixes.
@ 2014-07-24  9:39 Raymond L. Rivera
  2014-07-24  9:39 ` [PATCH 1/2] CodingStyle: Fixed a minor typo Raymond L. Rivera
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Raymond L. Rivera @ 2014-07-24  9:39 UTC (permalink / raw)
  To: linux-doc, linux-kernel; +Cc: Raymond L. Rivera

I discovered a few minor typos in some files I was reading and I fixed them.
I also took the opportunity to familiarize myself with the patch submission
process and a few other things. Hope it works out.

Raymond L. Rivera (2):
  CodingStyle: Fixed a minor typo.
  linux/pagemap.h: Fixed a typo in a code comment.

 Documentation/CodingStyle | 2 +-
 include/linux/pagemap.h   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
1.9.1


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

* [PATCH 1/2] CodingStyle: Fixed a minor typo.
  2014-07-24  9:39 [PATCH 0/2] Minor documentation typo fixes Raymond L. Rivera
@ 2014-07-24  9:39 ` Raymond L. Rivera
  2014-07-25 19:51   ` Randy Dunlap
  2014-07-24  9:39 ` [PATCH 2/2] linux/pagemap.h: Fixed a typo in a code comment Raymond L. Rivera
  2014-07-25 19:50 ` [PATCH 0/2] Minor documentation typo fixes Randy Dunlap
  2 siblings, 1 reply; 6+ messages in thread
From: Raymond L. Rivera @ 2014-07-24  9:39 UTC (permalink / raw)
  To: linux-doc, linux-kernel; +Cc: Raymond L. Rivera

There was a minor typo in the CodingStyle document where the word 'section'
had been spelled as 'secton'.

Signed-off-by: Raymond L. Rivera <ray.l.rivera@gmail.com>
---
 Documentation/CodingStyle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle
index 6b6bef3..3171822 100644
--- a/Documentation/CodingStyle
+++ b/Documentation/CodingStyle
@@ -675,7 +675,7 @@ the ones already enabled by DEBUG.
 Many subsystems have Kconfig debug options to turn on -DDEBUG in the
 corresponding Makefile; in other cases specific files #define DEBUG.  And
 when a debug message should be unconditionally printed, such as if it is
-already inside a debug-related #ifdef secton, printk(KERN_DEBUG ...) can be
+already inside a debug-related #ifdef section, printk(KERN_DEBUG ...) can be
 used.
 
 
-- 
1.9.1


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

* [PATCH 2/2] linux/pagemap.h: Fixed a typo in a code comment.
  2014-07-24  9:39 [PATCH 0/2] Minor documentation typo fixes Raymond L. Rivera
  2014-07-24  9:39 ` [PATCH 1/2] CodingStyle: Fixed a minor typo Raymond L. Rivera
@ 2014-07-24  9:39 ` Raymond L. Rivera
  2014-07-25 19:51   ` Randy Dunlap
  2014-07-25 19:50 ` [PATCH 0/2] Minor documentation typo fixes Randy Dunlap
  2 siblings, 1 reply; 6+ messages in thread
From: Raymond L. Rivera @ 2014-07-24  9:39 UTC (permalink / raw)
  To: linux-doc, linux-kernel; +Cc: Raymond L. Rivera

Corrected a minor typo in a code comment where 'be' was missing.

Signed-off-by: Raymond L. Rivera <ray.l.rivera@gmail.com>
---
 include/linux/pagemap.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h
index 0a97b58..bcabdbe 100644
--- a/include/linux/pagemap.h
+++ b/include/linux/pagemap.h
@@ -96,7 +96,7 @@ static inline void mapping_set_gfp_mask(struct address_space *m, gfp_t mask)
 }
 
 /*
- * The page cache can done in larger chunks than
+ * The page cache can be done in larger chunks than
  * one page, because it allows for more efficient
  * throughput (it can then be mapped into user
  * space in smaller chunks for same flexibility).
-- 
1.9.1


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

* Re: [PATCH 0/2] Minor documentation typo fixes.
  2014-07-24  9:39 [PATCH 0/2] Minor documentation typo fixes Raymond L. Rivera
  2014-07-24  9:39 ` [PATCH 1/2] CodingStyle: Fixed a minor typo Raymond L. Rivera
  2014-07-24  9:39 ` [PATCH 2/2] linux/pagemap.h: Fixed a typo in a code comment Raymond L. Rivera
@ 2014-07-25 19:50 ` Randy Dunlap
  2 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2014-07-25 19:50 UTC (permalink / raw)
  To: Raymond L. Rivera, linux-doc, linux-kernel

On 07/24/14 02:39, Raymond L. Rivera wrote:
> I discovered a few minor typos in some files I was reading and I fixed them.
> I also took the opportunity to familiarize myself with the patch submission
> process and a few other things. Hope it works out.
> 
> Raymond L. Rivera (2):
>   CodingStyle: Fixed a minor typo.
>   linux/pagemap.h: Fixed a typo in a code comment.
> 
>  Documentation/CodingStyle | 2 +-
>  include/linux/pagemap.h   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 

Hi,
In the future, please send such minor/trivial patches to
Jiri Kosina <trivial@kernel.org>

Thanks.

-- 
~Randy

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

* Re: [PATCH 1/2] CodingStyle: Fixed a minor typo.
  2014-07-24  9:39 ` [PATCH 1/2] CodingStyle: Fixed a minor typo Raymond L. Rivera
@ 2014-07-25 19:51   ` Randy Dunlap
  0 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2014-07-25 19:51 UTC (permalink / raw)
  To: Raymond L. Rivera, linux-doc, linux-kernel, Jiri Kosina

On 07/24/14 02:39, Raymond L. Rivera wrote:
> There was a minor typo in the CodingStyle document where the word 'section'
> had been spelled as 'secton'.
> 
> Signed-off-by: Raymond L. Rivera <ray.l.rivera@gmail.com>

Jiri, please pick up patches 1 & 2 for trivial.
Thanks.

Acked-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  Documentation/CodingStyle | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle
> index 6b6bef3..3171822 100644
> --- a/Documentation/CodingStyle
> +++ b/Documentation/CodingStyle
> @@ -675,7 +675,7 @@ the ones already enabled by DEBUG.
>  Many subsystems have Kconfig debug options to turn on -DDEBUG in the
>  corresponding Makefile; in other cases specific files #define DEBUG.  And
>  when a debug message should be unconditionally printed, such as if it is
> -already inside a debug-related #ifdef secton, printk(KERN_DEBUG ...) can be
> +already inside a debug-related #ifdef section, printk(KERN_DEBUG ...) can be
>  used.
>  
>  
> 


-- 
~Randy

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

* Re: [PATCH 2/2] linux/pagemap.h: Fixed a typo in a code comment.
  2014-07-24  9:39 ` [PATCH 2/2] linux/pagemap.h: Fixed a typo in a code comment Raymond L. Rivera
@ 2014-07-25 19:51   ` Randy Dunlap
  0 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2014-07-25 19:51 UTC (permalink / raw)
  To: Raymond L. Rivera, linux-doc, linux-kernel, Jiri Kosina

On 07/24/14 02:39, Raymond L. Rivera wrote:
> Corrected a minor typo in a code comment where 'be' was missing.
> 
> Signed-off-by: Raymond L. Rivera <ray.l.rivera@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  include/linux/pagemap.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h
> index 0a97b58..bcabdbe 100644
> --- a/include/linux/pagemap.h
> +++ b/include/linux/pagemap.h
> @@ -96,7 +96,7 @@ static inline void mapping_set_gfp_mask(struct address_space *m, gfp_t mask)
>  }
>  
>  /*
> - * The page cache can done in larger chunks than
> + * The page cache can be done in larger chunks than
>   * one page, because it allows for more efficient
>   * throughput (it can then be mapped into user
>   * space in smaller chunks for same flexibility).
> 


-- 
~Randy

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

end of thread, other threads:[~2014-07-25 19:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-24  9:39 [PATCH 0/2] Minor documentation typo fixes Raymond L. Rivera
2014-07-24  9:39 ` [PATCH 1/2] CodingStyle: Fixed a minor typo Raymond L. Rivera
2014-07-25 19:51   ` Randy Dunlap
2014-07-24  9:39 ` [PATCH 2/2] linux/pagemap.h: Fixed a typo in a code comment Raymond L. Rivera
2014-07-25 19:51   ` Randy Dunlap
2014-07-25 19:50 ` [PATCH 0/2] Minor documentation typo fixes Randy Dunlap

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.