Skip to content

Commit

Permalink
Fixed typo found in Zohars review
Browse files Browse the repository at this point in the history
  • Loading branch information
DomPeliniAerospike committed Nov 7, 2023
1 parent bf15249 commit 31bb47d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ record using the Aerospike database.
```js
const Aerospike = require('aerospike')

// INSERT HOSTNAME AND PORT NUMBER OF AEROPSIKE SERVER NODE HERE!
// INSERT HOSTNAME AND PORT NUMBER OF AEROSPIKE SERVER NODE HERE!
const config = {
hosts: '192.168.33.10:3000',
}
Expand Down
2 changes: 1 addition & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ The following is very simple example of how to write and read a record from Aero
```js
const Aerospike = require('aerospike')

// INSERT HOSTNAME AND PORT NUMBER OF AEROPSIKE SERVER NODE HERE!
// INSERT HOSTNAME AND PORT NUMBER OF AEROSPIKE SERVER NODE HERE!
const config = {
hosts: '192.168.33.10:3000',
}
Expand Down
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -1471,7 +1471,7 @@ Client.prototype.batchWrite = function (records, policy, callback) {
* const Aerospike = require('aerospike')
* var path = require('path');
*
* // INSERT HOSTNAME AND PORT NUMBER OF AEROPSIKE SERVER NODE HERE!
* // INSERT HOSTNAME AND PORT NUMBER OF AEROSPIKE SERVER NODE HERE!
* const config = {
* hosts: '192.168.33.10:3000',
* // Timeouts disabled, latency dependent on server location. Configure as needed.
Expand Down
2 changes: 1 addition & 1 deletion src/main/client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ NAN_METHOD(AerospikeClient::Connect)
}

/**
* Close the connections to the Aeropsike cluster.
* Close the connections to the Aerospike cluster.
*/
NAN_METHOD(AerospikeClient::Close)
{
Expand Down

0 comments on commit 31bb47d

Please sign in to comment.