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

docs(readme): fix typos #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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