linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] docs: sphinx:  Trivial fix of a typo in the file rstFlatTable.py
@ 2021-03-17 10:20 Bhaskar Chowdhury
  2021-03-17 18:25 ` Randy Dunlap
  2021-03-25 17:57 ` Jonathan Corbet
  0 siblings, 2 replies; 4+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-17 10:20 UTC (permalink / raw)
  To: corbet, unixbhaskar, linux-doc, linux-kernel; +Cc: rdunlap


s/buidler/builder/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 Documentation/sphinx/rstFlatTable.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/sphinx/rstFlatTable.py b/Documentation/sphinx/rstFlatTable.py
index a3eea0bbe6ba..1d2b9be6b6c5 100755
--- a/Documentation/sphinx/rstFlatTable.py
+++ b/Documentation/sphinx/rstFlatTable.py
@@ -161,7 +161,7 @@ class ListTableBuilder(object):
         for colwidth in colwidths:
             colspec = nodes.colspec(colwidth=colwidth)
             # FIXME: It seems, that the stub method only works well in the
-            # absence of rowspan (observed by the html buidler, the docutils-xml
+            # absence of rowspan (observed by the html builder, the docutils-xml
             # build seems OK).  This is not extraordinary, because there exists
             # no table directive (except *this* flat-table) which allows to
             # define coexistent of rowspan and stubs (there was no use-case
--
2.30.2


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

* Re: [PATCH] docs: sphinx: Trivial fix of a typo in the file rstFlatTable.py
  2021-03-17 10:20 [PATCH] docs: sphinx: Trivial fix of a typo in the file rstFlatTable.py Bhaskar Chowdhury
@ 2021-03-17 18:25 ` Randy Dunlap
  2021-03-25 17:57 ` Jonathan Corbet
  1 sibling, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2021-03-17 18:25 UTC (permalink / raw)
  To: Bhaskar Chowdhury, corbet, linux-doc, linux-kernel

On 3/17/21 3:20 AM, Bhaskar Chowdhury wrote:
> 
> s/buidler/builder/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

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

> ---
>  Documentation/sphinx/rstFlatTable.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/sphinx/rstFlatTable.py b/Documentation/sphinx/rstFlatTable.py
> index a3eea0bbe6ba..1d2b9be6b6c5 100755
> --- a/Documentation/sphinx/rstFlatTable.py
> +++ b/Documentation/sphinx/rstFlatTable.py
> @@ -161,7 +161,7 @@ class ListTableBuilder(object):
>          for colwidth in colwidths:
>              colspec = nodes.colspec(colwidth=colwidth)
>              # FIXME: It seems, that the stub method only works well in the
> -            # absence of rowspan (observed by the html buidler, the docutils-xml
> +            # absence of rowspan (observed by the html builder, the docutils-xml
>              # build seems OK).  This is not extraordinary, because there exists
>              # no table directive (except *this* flat-table) which allows to
>              # define coexistent of rowspan and stubs (there was no use-case
> --


-- 
~Randy


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

* Re: [PATCH] docs: sphinx:  Trivial fix of a typo in the file rstFlatTable.py
  2021-03-17 10:20 [PATCH] docs: sphinx: Trivial fix of a typo in the file rstFlatTable.py Bhaskar Chowdhury
  2021-03-17 18:25 ` Randy Dunlap
@ 2021-03-25 17:57 ` Jonathan Corbet
  2021-03-25 18:18   ` Bhaskar Chowdhury
  1 sibling, 1 reply; 4+ messages in thread
From: Jonathan Corbet @ 2021-03-25 17:57 UTC (permalink / raw)
  To: Bhaskar Chowdhury, unixbhaskar, linux-doc, linux-kernel; +Cc: rdunlap

Bhaskar Chowdhury <unixbhaskar@gmail.com> writes:

> s/buidler/builder/
>
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
> ---
>  Documentation/sphinx/rstFlatTable.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/sphinx/rstFlatTable.py b/Documentation/sphinx/rstFlatTable.py
> index a3eea0bbe6ba..1d2b9be6b6c5 100755
> --- a/Documentation/sphinx/rstFlatTable.py
> +++ b/Documentation/sphinx/rstFlatTable.py
> @@ -161,7 +161,7 @@ class ListTableBuilder(object):
>          for colwidth in colwidths:
>              colspec = nodes.colspec(colwidth=colwidth)
>              # FIXME: It seems, that the stub method only works well in the
> -            # absence of rowspan (observed by the html buidler, the docutils-xml
> +            # absence of rowspan (observed by the html builder, the docutils-xml
>              # build seems OK).  This is not extraordinary, because there exists
>              # no table directive (except *this* flat-table) which allows to
>              # define coexistent of rowspan and stubs (there was no use-case
> --

This was fixed in your previous patch from March 2.  Bhaskar, please
slow down a bit and try not to create needless work for the recipients
of your patches, OK?

Thanks,

jon

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

* Re: [PATCH] docs: sphinx:  Trivial fix of a typo in the file rstFlatTable.py
  2021-03-25 17:57 ` Jonathan Corbet
@ 2021-03-25 18:18   ` Bhaskar Chowdhury
  0 siblings, 0 replies; 4+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-25 18:18 UTC (permalink / raw)
  To: Jonathan Corbet; +Cc: linux-doc, linux-kernel, rdunlap

[-- Attachment #1: Type: text/plain, Size: 1555 bytes --]

On 11:57 Thu 25 Mar 2021, Jonathan Corbet wrote:
>Bhaskar Chowdhury <unixbhaskar@gmail.com> writes:
>
>> s/buidler/builder/
>>
>> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
>> ---
>>  Documentation/sphinx/rstFlatTable.py | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/Documentation/sphinx/rstFlatTable.py b/Documentation/sphinx/rstFlatTable.py
>> index a3eea0bbe6ba..1d2b9be6b6c5 100755
>> --- a/Documentation/sphinx/rstFlatTable.py
>> +++ b/Documentation/sphinx/rstFlatTable.py
>> @@ -161,7 +161,7 @@ class ListTableBuilder(object):
>>          for colwidth in colwidths:
>>              colspec = nodes.colspec(colwidth=colwidth)
>>              # FIXME: It seems, that the stub method only works well in the
>> -            # absence of rowspan (observed by the html buidler, the docutils-xml
>> +            # absence of rowspan (observed by the html builder, the docutils-xml
>>              # build seems OK).  This is not extraordinary, because there exists
>>              # no table directive (except *this* flat-table) which allows to
>>              # define coexistent of rowspan and stubs (there was no use-case
>> --
>
>This was fixed in your previous patch from March 2.  Bhaskar, please
>slow down a bit and try not to create needless work for the recipients
>of your patches, OK?
>
Apologies. I am sorry to cause pain to others, this was not true intension of
the trivial work I am trying to do.

I shall be prudent in the future. My sincere apology to gobbles up peoples
time.

>Thanks,
>
>jon

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2021-03-25 18:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17 10:20 [PATCH] docs: sphinx: Trivial fix of a typo in the file rstFlatTable.py Bhaskar Chowdhury
2021-03-17 18:25 ` Randy Dunlap
2021-03-25 17:57 ` Jonathan Corbet
2021-03-25 18:18   ` Bhaskar Chowdhury

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).