Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor typos #17682

Closed
wants to merge 1 commit into from
Closed

Conversation

NathanBaulch
Copy link
Contributor

@NathanBaulch NathanBaulch commented Aug 1, 2024

Just thought I'd contribute some typo fixes that keep tripping up CI/CD checks in my projects. Nothing controversial (hopefully), just 174 simple fixes.

Use the following command to get a quick and dirty summary of the specific corrections made:

git diff HEAD^! --word-diff-regex='\w+' -U0 \
  | grep -E '\[\-.*\-\]\{\+.*\+\}' \
  | sed -r 's/.*\[\-(.*)\-\]\{\+(.*)\+\}.*/\1 \2/' \
  | sort | uniq -c | sort -n

FWIW, the top typos are:

  • trimed → trimmed (37)
  • substract → subtract (7)
  • qualifed → qualified (7)
  • extesion → extension (6)
  • mising → missing (5)
  • btye → byte (4)
  • likey → likely (4)
  • candicate → candidate (3)
  • decriptor → descriptor (3)
  • inherting → inheriting (3)
  • colletion → collection (3)
  • caluclated → calculated (3)
  • unititialized → uninitialized (3)
  • implemting → implementing (3)
  • binrary → binary (3)
  • descripor → descriptor (3)
  • negitive → negative (3)

@NathanBaulch NathanBaulch requested review from a team as code owners August 1, 2024 04:52
@NathanBaulch NathanBaulch requested review from acozzette, ericsalo and dmaclach and removed request for a team August 1, 2024 04:52
Copy link

google-cla bot commented Aug 1, 2024

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

@NathanBaulch NathanBaulch requested review from shaod2 and jskeet and removed request for a team August 1, 2024 04:52
Copy link
Contributor

@jskeet jskeet left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The C# changes look fine to me.

@JasonLunn JasonLunn added the 🅰️ safe for tests Mark a commit as safe to run presubmits over label Aug 5, 2024
@github-actions github-actions bot removed the 🅰️ safe for tests Mark a commit as safe to run presubmits over label Aug 5, 2024
Copy link
Contributor

@JasonLunn JasonLunn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ruby changes LGTM

@JasonLunn
Copy link
Contributor

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

@NathanBaulch Please sign the CLA as soon as possible.

@NathanBaulch
Copy link
Contributor Author

NathanBaulch commented Aug 5, 2024

@NathanBaulch Please sign the CLA as soon as possible.

I signed it last week shortly after creating this PR @JasonLunn. NVM, just found the refresh link.

@NathanBaulch
Copy link
Contributor Author

Sorry @JasonLunn, I force pushed to resolve a new conflict with main and lost the "safe for tests" status.

@JasonLunn JasonLunn added the 🅰️ safe for tests Mark a commit as safe to run presubmits over label Aug 19, 2024
@github-actions github-actions bot removed the 🅰️ safe for tests Mark a commit as safe to run presubmits over label Aug 19, 2024
@NathanBaulch
Copy link
Contributor Author

Bump!

@tonyliaoss
Copy link
Member

Hi Nathan, sorry for the late response, unfortunately it looks like there are new merge conflicts from some of the files going stale. Could you pull up to main and resolve the merge conflicts please?

@@ -80,7 +80,7 @@ enum Edition {
EDITION_2024 = 1001;

// Placeholder editions for testing feature resolution. These should not be
// used or relyed on outside of tests.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately we can't accept any external contributions to this file

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, this particular typo is what started this whole process for me! It leaks into downstream code that references google/api/annotations.proto, typically to annotate services with HTTP routing metadata.
If someone internal could "independently" fix this typo then that'd be great! 🙏

@@ -166,7 +166,7 @@ message Method {
// The mixin construct implies that all methods in `AccessControl` are
// also declared with same name and request/response types in
// `Storage`. A documentation generator or annotation processor will
// see the effective `Storage.GetAcl` method after inherting
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar issue here, our policies don't allow us to accept external contributions to this file, so I'm removing it on the import

copybara-service bot pushed a commit that referenced this pull request Sep 20, 2024
Just thought I'd contribute some typo fixes that keep tripping up CI/CD checks in my projects. Nothing controversial (hopefully), just 174 simple fixes.

Use the following command to get a quick and dirty summary of the specific corrections made:
```shell
git diff HEAD^! --word-diff-regex='\w+' -U0 \
  | grep -E '\[\-.*\-\]\{\+.*\+\}' \
  | sed -r 's/.*\[\-(.*)\-\]\{\+(.*)\+\}.*/\1 \2/' \
  | sort | uniq -c | sort -n
```

FWIW, the top typos are:
* trimed → trimmed (37)
* substract → subtract (7)
* qualifed → qualified (7)
* extesion → extension (6)
* mising → missing (5)
* btye → byte (4)
* likey → likely (4)
* candicate → candidate (3)
* decriptor → descriptor (3)
* inherting → inheriting (3)
* colletion → collection (3)
* caluclated → calculated (3)
* unititialized → uninitialized (3)
* implemting → implementing (3)
* binrary → binary (3)
* descripor → descriptor (3)
* negitive → negative (3)

Closes #17682

COPYBARA_INTEGRATE_REVIEW=#17682 from NathanBaulch:typos d41762d
FUTURE_COPYBARA_INTEGRATE_REVIEW=#17682 from NathanBaulch:typos d41762d
PiperOrigin-RevId: 676872471
copybara-service bot pushed a commit that referenced this pull request Sep 20, 2024
Just thought I'd contribute some typo fixes that keep tripping up CI/CD checks in my projects. Nothing controversial (hopefully), just 174 simple fixes.

Use the following command to get a quick and dirty summary of the specific corrections made:
```shell
git diff HEAD^! --word-diff-regex='\w+' -U0 \
  | grep -E '\[\-.*\-\]\{\+.*\+\}' \
  | sed -r 's/.*\[\-(.*)\-\]\{\+(.*)\+\}.*/\1 \2/' \
  | sort | uniq -c | sort -n
```

FWIW, the top typos are:
* trimed → trimmed (37)
* substract → subtract (7)
* qualifed → qualified (7)
* extesion → extension (6)
* mising → missing (5)
* btye → byte (4)
* likey → likely (4)
* candicate → candidate (3)
* decriptor → descriptor (3)
* inherting → inheriting (3)
* colletion → collection (3)
* caluclated → calculated (3)
* unititialized → uninitialized (3)
* implemting → implementing (3)
* binrary → binary (3)
* descripor → descriptor (3)
* negitive → negative (3)

Closes #17682

COPYBARA_INTEGRATE_REVIEW=#17682 from NathanBaulch:typos d41762d
FUTURE_COPYBARA_INTEGRATE_REVIEW=#17682 from NathanBaulch:typos d41762d
PiperOrigin-RevId: 676872471
@tonyliaoss
Copy link
Member

Hi Nathan,

We are going to do a force-pull and resolve those conflicts ourselves. No action needed on your part.

copybara-service bot pushed a commit that referenced this pull request Sep 20, 2024
Just thought I'd contribute some typo fixes that keep tripping up CI/CD checks in my projects. Nothing controversial (hopefully), just 174 simple fixes.

Use the following command to get a quick and dirty summary of the specific corrections made:
```shell
git diff HEAD^! --word-diff-regex='\w+' -U0 \
  | grep -E '\[\-.*\-\]\{\+.*\+\}' \
  | sed -r 's/.*\[\-(.*)\-\]\{\+(.*)\+\}.*/\1 \2/' \
  | sort | uniq -c | sort -n
```

FWIW, the top typos are:
* trimed → trimmed (37)
* substract → subtract (7)
* qualifed → qualified (7)
* extesion → extension (6)
* mising → missing (5)
* btye → byte (4)
* likey → likely (4)
* candicate → candidate (3)
* decriptor → descriptor (3)
* inherting → inheriting (3)
* colletion → collection (3)
* caluclated → calculated (3)
* unititialized → uninitialized (3)
* implemting → implementing (3)
* binrary → binary (3)
* descripor → descriptor (3)
* negitive → negative (3)

Closes #17682

COPYBARA_INTEGRATE_REVIEW=#17682 from NathanBaulch:typos d41762d
FUTURE_COPYBARA_INTEGRATE_REVIEW=#17682 from NathanBaulch:typos d41762d
PiperOrigin-RevId: 676872471
@NathanBaulch
Copy link
Contributor Author

No worries @tonyliaoss, let me know if you need anything.

copybara-service bot pushed a commit that referenced this pull request Sep 20, 2024
Just thought I'd contribute some typo fixes that keep tripping up CI/CD checks in my projects. Nothing controversial (hopefully), just 174 simple fixes.

Use the following command to get a quick and dirty summary of the specific corrections made:
```shell
git diff HEAD^! --word-diff-regex='\w+' -U0 \
  | grep -E '\[\-.*\-\]\{\+.*\+\}' \
  | sed -r 's/.*\[\-(.*)\-\]\{\+(.*)\+\}.*/\1 \2/' \
  | sort | uniq -c | sort -n
```

FWIW, the top typos are:
* trimed → trimmed (37)
* substract → subtract (7)
* qualifed → qualified (7)
* extesion → extension (6)
* mising → missing (5)
* btye → byte (4)
* likey → likely (4)
* candicate → candidate (3)
* decriptor → descriptor (3)
* inherting → inheriting (3)
* colletion → collection (3)
* caluclated → calculated (3)
* unititialized → uninitialized (3)
* implemting → implementing (3)
* binrary → binary (3)
* descripor → descriptor (3)
* negitive → negative (3)

Closes #17682

COPYBARA_INTEGRATE_REVIEW=#17682 from NathanBaulch:typos d41762d
FUTURE_COPYBARA_INTEGRATE_REVIEW=#17682 from NathanBaulch:typos d41762d
PiperOrigin-RevId: 676872471
@NathanBaulch NathanBaulch deleted the typos branch September 21, 2024 03:54
protobuf-team-bot added a commit that referenced this pull request Sep 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants