Skip to content

Commit

Permalink
Fix typos in README.md
Browse files Browse the repository at this point in the history
- remove whitespace on line 130
- fix typo on line 155
  • Loading branch information
Manningham committed Dec 10, 2015
1 parent d607160 commit dffdf63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions volos-mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ var profile = {
port: "5432"
};
var mysqlConnectorObject = new mysqlConnector.MySqlConnector({"profile": profile, "restMap": restMap});
var mysqlConnectorObject = new mysqlConnector.MySqlConnector({"profile": profile, "restMap": restMap});
var svr = http.createServer(function (req, resp) {
mysqlConnectorObject.dispatchRequest(req, resp);
Expand All @@ -152,7 +152,7 @@ var http = require('http');
var vault = require('avault').createVault(__dirname);
var restMap = require('./queryToRestMap');
ar mysqlConnectorObject;
var mysqlConnectorObject;
vault.get('my_profile_key', function (profileString) {
if (!profileString) {
Expand Down Expand Up @@ -348,4 +348,4 @@ Follow the same pattern for DELETE operations. Refer to the default ``queryToRes
MIT




0 comments on commit dffdf63

Please sign in to comment.