openapi-generator icon indicating copy to clipboard operation
openapi-generator copied to clipboard

Fix minor typos everywhere

Open NathanBaulch opened this issue 1 year ago • 0 comments

Another batch of minor typo fixes, similar to #10272 and #13915. Nothing controversial (hopefully), just 639 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:

  • minium (114)
  • thic (84)
  • propertes (77)
  • requestor (55)
  • excepetion (25)
  • commmand (18)
  • mamal (17)
  • oepration (15)
  • authoriziation (13)
  • validaty (11)
  • someting (9)
  • occationally (9)
  • dummmy (8)
  • propt (8)
  • ammount (8)
  • occured (8)

PR checklist

  • [x] Read the contribution guidelines.
  • [x] Pull Request title clearly describes the work in the pull request and Pull Request description provides details about how to validate the work. Missing information here may result in delayed response from the community.
  • [x] Run the following to build the project and update samples:
    ./mvnw clean package 
    ./bin/generate-samples.sh ./bin/configs/*.yaml
    ./bin/utils/export_docs_generators.sh
    
    (For Windows users, please run the script in Git BASH) Commit all changed files.
  • [x] File the PR against the correct branch: master (upcoming 7.6.0 minor release - breaking changes with fallbacks), 8.0.x (breaking changes without fallbacks)
  • [x] If your PR is targeting a particular programming language, @mention the technical committee members, so they are more likely to review the pull request.

NathanBaulch avatar Aug 28 '24 03:08 NathanBaulch