bitbake-devel.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] doc: bitbake-user-manual: grammar fix for the number of "metadata"
       [not found] <9aebdc2ca149587d39cd23628c392423148f22ba.camel@linuxfoundation.org>
@ 2021-07-29 13:01 ` Michael Opdenacker
  2021-07-29 13:05   ` [bitbake-devel] " Quentin Schulz
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Opdenacker @ 2021-07-29 13:01 UTC (permalink / raw)
  To: bitbake-devel; +Cc: docs, Michael Opdenacker

"metadata" is used both as singular and as plural.
The first change fixes a case in which the verbs have a singular conjugation
but articles that indicate a plural case.

The second change is for consistency with the first one inside
the same paragraph.

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
---
 doc/bitbake-user-manual/bitbake-user-manual-intro.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/bitbake-user-manual/bitbake-user-manual-intro.rst b/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
index eb140665..64e7305d 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
@@ -27,11 +27,11 @@ Linux software stacks using a task-oriented approach.
 Conceptually, BitBake is similar to GNU Make in some regards but has
 significant differences:
 
--  BitBake executes tasks according to provided metadata that builds up
+-  BitBake executes tasks according to provided metadata that build up
    the tasks. Metadata is stored in recipe (``.bb``) and related recipe
    "append" (``.bbappend``) files, configuration (``.conf``) and
    underlying include (``.inc``) files, and in class (``.bbclass``)
-   files. The metadata provides BitBake with instructions on what tasks
+   files. The metadata provide BitBake with instructions on what tasks
    to run and the dependencies between those tasks.
 
 -  BitBake includes a fetcher library for obtaining source code from
-- 
2.25.1


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

* Re: [bitbake-devel] [PATCH] doc: bitbake-user-manual: grammar fix for the number of "metadata"
  2021-07-29 13:01 ` [PATCH] doc: bitbake-user-manual: grammar fix for the number of "metadata" Michael Opdenacker
@ 2021-07-29 13:05   ` Quentin Schulz
  2021-07-29 13:09     ` [docs] " Michael Opdenacker
  2021-07-29 21:31     ` Richard Purdie
  0 siblings, 2 replies; 5+ messages in thread
From: Quentin Schulz @ 2021-07-29 13:05 UTC (permalink / raw)
  To: Michael Opdenacker; +Cc: bitbake-devel, docs

Hi Michael,

On Thu, Jul 29, 2021 at 03:01:33PM +0200, Michael Opdenacker wrote:
> "metadata" is used both as singular and as plural.
> The first change fixes a case in which the verbs have a singular conjugation
> but articles that indicate a plural case.
> 
> The second change is for consistency with the first one inside
> the same paragraph.
> 
> Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
> ---
>  doc/bitbake-user-manual/bitbake-user-manual-intro.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/doc/bitbake-user-manual/bitbake-user-manual-intro.rst b/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
> index eb140665..64e7305d 100644
> --- a/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
> +++ b/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
> @@ -27,11 +27,11 @@ Linux software stacks using a task-oriented approach.
>  Conceptually, BitBake is similar to GNU Make in some regards but has
>  significant differences:
>  
> --  BitBake executes tasks according to provided metadata that builds up
> +-  BitBake executes tasks according to provided metadata that build up
>     the tasks. Metadata is stored in recipe (``.bb``) and related recipe

Then "Metadata are" here seems appropriate to me. What do you think?

Cheers,
Quentin

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

* Re: [docs] [bitbake-devel] [PATCH] doc: bitbake-user-manual: grammar fix for the number of "metadata"
  2021-07-29 13:05   ` [bitbake-devel] " Quentin Schulz
@ 2021-07-29 13:09     ` Michael Opdenacker
  2021-07-29 21:31     ` Richard Purdie
  1 sibling, 0 replies; 5+ messages in thread
From: Michael Opdenacker @ 2021-07-29 13:09 UTC (permalink / raw)
  To: Quentin Schulz; +Cc: bitbake-devel, docs

Hi Quentin,

On 7/29/21 3:05 PM, Quentin Schulz wrote:
> Hi Michael,
>
> On Thu, Jul 29, 2021 at 03:01:33PM +0200, Michael Opdenacker wrote:
>> "metadata" is used both as singular and as plural.
>> The first change fixes a case in which the verbs have a singular conjugation
>> but articles that indicate a plural case.
>>
>> The second change is for consistency with the first one inside
>> the same paragraph.
>>
>> Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
>> ---
>>  doc/bitbake-user-manual/bitbake-user-manual-intro.rst | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/doc/bitbake-user-manual/bitbake-user-manual-intro.rst b/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
>> index eb140665..64e7305d 100644
>> --- a/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
>> +++ b/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
>> @@ -27,11 +27,11 @@ Linux software stacks using a task-oriented approach.
>>  Conceptually, BitBake is similar to GNU Make in some regards but has
>>  significant differences:
>>  
>> --  BitBake executes tasks according to provided metadata that builds up
>> +-  BitBake executes tasks according to provided metadata that build up
>>     the tasks. Metadata is stored in recipe (``.bb``) and related recipe
> Then "Metadata are" here seems appropriate to me. What do you think?

Good catch, many thanks! I paid attention to the following case, but
missed that one.
Cheers,
Michael.
-- 

Michael Opdenacker, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

* Re: [bitbake-devel] [PATCH] doc: bitbake-user-manual: grammar fix for the number of "metadata"
  2021-07-29 13:05   ` [bitbake-devel] " Quentin Schulz
  2021-07-29 13:09     ` [docs] " Michael Opdenacker
@ 2021-07-29 21:31     ` Richard Purdie
  2021-07-30 10:33       ` [docs] " Michael Opdenacker
  1 sibling, 1 reply; 5+ messages in thread
From: Richard Purdie @ 2021-07-29 21:31 UTC (permalink / raw)
  To: Quentin Schulz, Michael Opdenacker; +Cc: bitbake-devel, docs

On Thu, 2021-07-29 at 15:05 +0200, Quentin Schulz wrote:
> Hi Michael,
> 
> On Thu, Jul 29, 2021 at 03:01:33PM +0200, Michael Opdenacker wrote:
> > "metadata" is used both as singular and as plural.
> > The first change fixes a case in which the verbs have a singular conjugation
> > but articles that indicate a plural case.
> > 
> > The second change is for consistency with the first one inside
> > the same paragraph.
> > 
> > Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
> > ---
> >  doc/bitbake-user-manual/bitbake-user-manual-intro.rst | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/doc/bitbake-user-manual/bitbake-user-manual-intro.rst b/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
> > index eb140665..64e7305d 100644
> > --- a/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
> > +++ b/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
> > @@ -27,11 +27,11 @@ Linux software stacks using a task-oriented approach.
> >  Conceptually, BitBake is similar to GNU Make in some regards but has
> >  significant differences:
> >  
> > 
> > 
> > 
> > --  BitBake executes tasks according to provided metadata that builds up
> > +-  BitBake executes tasks according to provided metadata that build up
> >     the tasks. Metadata is stored in recipe (``.bb``) and related recipe
> 
> Then "Metadata are" here seems appropriate to me. What do you think?

I'd have said "Metadata is stored in recipes"...

Cheers,

Richard 


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

* Re: [docs] [bitbake-devel] [PATCH] doc: bitbake-user-manual: grammar fix for the number of "metadata"
  2021-07-29 21:31     ` Richard Purdie
@ 2021-07-30 10:33       ` Michael Opdenacker
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Opdenacker @ 2021-07-30 10:33 UTC (permalink / raw)
  To: Richard Purdie, Quentin Schulz; +Cc: bitbake-devel, docs


On 7/29/21 11:31 PM, Richard Purdie wrote:
> I'd have said "Metadata is stored in recipes"...

Let's trust you on this, Richard.
All this back and forth just for eventually adding a single "the"!

At least, I'm starting to understand the usage of "metadata" and "data"
in today's English.
Thanks for your time and patience!
Michael.

-- 
Michael Opdenacker, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

end of thread, other threads:[~2021-07-30 10:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <9aebdc2ca149587d39cd23628c392423148f22ba.camel@linuxfoundation.org>
2021-07-29 13:01 ` [PATCH] doc: bitbake-user-manual: grammar fix for the number of "metadata" Michael Opdenacker
2021-07-29 13:05   ` [bitbake-devel] " Quentin Schulz
2021-07-29 13:09     ` [docs] " Michael Opdenacker
2021-07-29 21:31     ` Richard Purdie
2021-07-30 10:33       ` [docs] " Michael Opdenacker

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).