Skip to content

Commit

Permalink
Fixed typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Jul 22, 2010
1 parent d03821b commit 0a84824
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/migrate.1
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ var connect = require(\'connect\');
var app = express\.createServer(
connect\.logger(),
connect\.methodOverride(),
connect\.cookie()
connect\.cookieDecoder()
);
.
.fi
Expand Down
2 changes: 1 addition & 1 deletion docs/migrate.html
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ <h3 id="Plugins-vs-Middleware">Plugins vs Middleware</h3>
var app = express.createServer(
connect.logger(),
connect.methodOverride(),
connect.cookie()
connect.cookieDecoder()
);
</code></pre>

Expand Down
2 changes: 1 addition & 1 deletion docs/migrate.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Which we can now _use()_ within our app, or pass to the _express.createServer()_
var app = express.createServer(
connect.logger(),
connect.methodOverride(),
connect.cookie()
connect.cookieDecoder()
);

or:
Expand Down

0 comments on commit 0a84824

Please sign in to comment.