Skip to content

Commit

Permalink
Fixed some issues in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed Mar 1, 2013
1 parent cd4690d commit 8302266
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/index.html
Expand Up @@ -180,7 +180,7 @@
<p><a href="https://travis-ci.org/C2FO/nools"><img src="https://travis-ci.org/C2FO/nools.png" alt="Build Status"></a></p>
<p><a href="http://ci.testling.com/C2FO/nools"><img src="http://ci.testling.com/C2FO/nools.png" alt="browser support"></a></p>
<h1>Nools</h1>
<p>Nools is a <a href="http://en.wikipedia.org/wiki/Rete_algorithm">rete</a> based rules engine for written entirely in javascript.</p>
<p>Nools is a <a href="http://en.wikipedia.org/wiki/Rete_algorithm">rete</a> based rules engine written entirely in javascript.</p>
<h1>Installation</h1>
<pre class='prettyprint linenums lang-js'><code>npm install nools</code></pre>
<p>Or <a href="https://raw.github.com/doug-martin/C2FO/master/nools.js">download the source</a> (<a href="https://raw.github.com/doug-martin/C2FO/master/nools.min.js">minified</a>)</p>
Expand All @@ -203,12 +203,12 @@ <h1>Usage</h1>
<li><a href="#browser-support">Browser Support</a></li>
<li><a href="#fib">Fibonacci</a></li>
</ul>
<p>To get started with nools the <a href="https://github.com/doug-martin/nools/tree/master/examples">examples</a> and <a href="https://github.com/doug-martin/nools/tree/master/test">tests</a> are a
<p>The <a href="https://github.com/C2FO/nools/tree/master/examples">examples</a> and <a href="https://github.com/C2FO/nools/tree/master/test">tests</a> are a
great place to get started.</p>
<p><a name="flow"></a></p>
<h2>Defining a flow</h2>
<p>When using nools you define a <strong>flow</strong> which acts as a container for rules that can later be used to get
an <strong>engine session</strong></p>
a <strong>session</strong></p>
<h3>Programmatically</h3>
<pre class='prettyprint linenums lang-js'><code class="lang-javascript">var nools = require(&quot;nools&quot;);

Expand Down
6 changes: 3 additions & 3 deletions readme.md
Expand Up @@ -4,7 +4,7 @@

# Nools

Nools is a [rete](http://en.wikipedia.org/wiki/Rete_algorithm) based rules engine for written entirely in javascript.
Nools is a [rete](http://en.wikipedia.org/wiki/Rete_algorithm) based rules engine written entirely in javascript.

# Installation

Expand All @@ -31,14 +31,14 @@ Or [download the source](https://raw.github.com/doug-martin/C2FO/master/nools.js



To get started with nools the [examples](https://github.com/doug-martin/nools/tree/master/examples) and [tests](https://github.com/doug-martin/nools/tree/master/test) are a
The [examples](https://github.com/C2FO/nools/tree/master/examples) and [tests](https://github.com/C2FO/nools/tree/master/test) are a
great place to get started.

<a name="flow"></a>
## Defining a flow

When using nools you define a **flow** which acts as a container for rules that can later be used to get
an **engine session**
a **session**

### Programmatically
```javascript
Expand Down

0 comments on commit 8302266

Please sign in to comment.