Skip to content

Commit

Permalink
doc fixes
Browse files Browse the repository at this point in the history
Signed-off-by: IncSW <[email protected]>
  • Loading branch information
IncSW authored and GayathriKaliyamoorthy committed Jul 14, 2015
1 parent 6e5bc1f commit d742bd6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The parameters for the `callback` argument:
Example:

```js
var bins = { itemsShopped: 5}
var bins = {itemsShopped: 5}

client.add(key, bins, function(error, record, metadata, key) {
// do something
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var config = {
},
modlua: {
systemPath: 'path to system UDF files',
userPath: ' 'path to user UDF files'
userPath: 'path to user UDF files'
}
};

Expand Down
9 changes: 5 additions & 4 deletions docs/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ Example:
```js
var filter = aerospike.filters

var queryArgs = { filters = [
filter.equal('a', 'hello')
]
}
var queryArgs = {
filters: [
filter.equal('a', 'hello')
]
};

client.query(ns, set, queryArgs)
```
Expand Down

0 comments on commit d742bd6

Please sign in to comment.