Skip to content

Commit

Permalink
Small doc fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
miccolis committed Sep 26, 2011
1 parent 64229eb commit f2650b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ The function takes the following parameters:
* sqlite: path to the SQLite database. Does not need to actually exist -- couch-sqlite autocreates it.
* table: SQLite table name.
* schema: table schema, used when autocreating the table.
* couchUri: The URI of the couch database. If couch is running on localhost, using the default port (5884) and the database name is `sqlite_data` this would be `http://localhost:5984/sqlite_data`.
* couchUri: The URI of the couch database. If couch is running on localhost, using the default port (5984) and the database name is `sqlite_data` this would be `http://localhost:5984/sqlite_data`.

```javascript
var couchSqlite = require('couch-sqlite');
Expand Down
4 changes: 1 addition & 3 deletions index.js
Expand Up @@ -163,9 +163,7 @@ var update = function(conn, record, callback) {
*
* - `sqlite` (required) Path to a sqlite file, or a location to write one.
* - `schema` (required) a statement which can be used to create the schema.
* - `couchHost` (required) the host of the couch database
* - `couchPort` (required) the port on which couch is running
* - `couchDb` (required) the database name
* - `couchUri` (required) the URI of the couch database.
* - `table` Name to use for data table in the sqlite database, defaults to `data`
* - `map` (deprecated)
*
Expand Down
2 changes: 1 addition & 1 deletion test/lib/daybed.js
Expand Up @@ -3,7 +3,7 @@ var http = require('http'),

/**
* Prop up a fake CouchDB server which can be used to (psycho)analyize what our
* tells it.
* library tells it.
*/
module.exports = function(port, callback) {
var server = new http.Server();
Expand Down

0 comments on commit f2650b6

Please sign in to comment.