Skip to content

Commit

Permalink
docs(readme): fix typos
Browse files Browse the repository at this point in the history
docs(readme): fix typos

reuseable->reusable
primive -> primitive
browserifys -> browserify's
modules.concord modules -> concord modules

resolves webpack#7
  • Loading branch information
Parikshit-Hooda authored Mar 17, 2020
1 parent 90c56b6 commit 9baccb4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# concord

A spec for modules. concord modules.
A spec for concord modules.

## Goals

* Reuseable modules that can be used independent of the build system.
* Reusable modules that can be used independent of the build system.
* Allow to use different module types and describe dependencies between them. i. e.
* code (javascript, coffeescript)
* data (json, text, yaml)
Expand Down Expand Up @@ -46,7 +46,7 @@ A spec for modules. concord modules.

### [browserify](http://browserify.org/) style modules

browserifys approach is to use only node.js-compatible modules plus code and transform this code for the used environment (here browser).
browserify's approach is to use only node.js-compatible modules plus code and transform this code for the used environment (here browser).

Example: loading HTML file

Expand Down Expand Up @@ -368,7 +368,7 @@ The **modification type** explains how the original export is modified.

#### example export types

* `object`: any javascript object (or primive value) is exported
* `object`: any javascript object (or primitive value) is exported
* `data`: data (no code: no functions or modified getter/setter)
* `+immutable`: data will never be changed (allows optimizations like inlining)
* `template-function`: a function returning a string is exported
Expand Down

0 comments on commit 9baccb4

Please sign in to comment.