Skip to content

Commit 35a8273

Browse files
authored
Merge pull request #463 from BendingBender/fix-typos
Fix several typos
2 parents 779dc10 + 4ac0f4c commit 35a8273

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ class MyElement {
580580

581581
let initializersForMyElement = [];
582582

583-
MyElement = customElement(MyElement, {
583+
MyElement = customElement('my-element')(MyElement, {
584584
kind: "class",
585585
name: "MyElement",
586586
addInitializer(fn) {
@@ -680,7 +680,7 @@ class Container {
680680
}
681681

682682
lookup(injectionKey) {
683-
this.register.get(injectionKey);
683+
this.registry.get(injectionKey);
684684
}
685685

686686
create(Class) {
@@ -713,7 +713,7 @@ let c = container.create(C);
713713
c.store === store; // true
714714
```
715715
716-
Access is generally provided based on whether or not the value is a value meant to be read or written. Fields and auto-accessors can be both read and written to. Accessors can either be read in the case of getters, or wriitten in the case of setters. Methods can only be read.
716+
Access is generally provided based on whether or not the value is a value meant to be read or written. Fields and auto-accessors can be both read and written to. Accessors can either be read in the case of getters, or written in the case of setters. Methods can only be read.
717717
718718
## Possible extensions
719719

0 commit comments

Comments
 (0)