Fix typo in CONTRIBUTING.md (#5719)

inheritence -> inheritance

Co-authored-by: Jesse Mazzella <ozyx@users.noreply.github.com>
This commit is contained in:
Ikko Ashimine 2022-09-13 06:14:38 +09:00 committed by GitHub
parent 15ab0dae50
commit 8a06dedf9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,7 +173,7 @@ The following guidelines are provided for anyone contributing source code to the
1. Avoid deep nesting (especially of functions), except where necessary 1. Avoid deep nesting (especially of functions), except where necessary
(e.g. due to closure scope). (e.g. due to closure scope).
1. End with a single new-line character. 1. End with a single new-line character.
1. Always use ES6 `Class`es and inheritence rather than the pre-ES6 prototypal 1. Always use ES6 `Class`es and inheritance rather than the pre-ES6 prototypal
pattern. pattern.
1. Within a given function's scope, do not mix declarations and imperative 1. Within a given function's scope, do not mix declarations and imperative
code, and present these in the following order: code, and present these in the following order:
@ -328,4 +328,4 @@ checklist).
Write out a small list of tests performed with just enough detail for another developer on the team Write out a small list of tests performed with just enough detail for another developer on the team
to execute. to execute.
i.e. ```When Clicking on Add button, new `object` appears in dropdown.``` i.e. ```When Clicking on Add button, new `object` appears in dropdown.```