You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2015/05/29 21:49:41 UTC

[4/9] storm git commit: Fixing typos in README

Fixing typos in README


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/a633fe13
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/a633fe13
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/a633fe13

Branch: refs/heads/0.10.x-branch
Commit: a633fe13bef01e9f3d1c559ca13f45bf8f1dbda2
Parents: d268903
Author: Parth Brahmbhatt <br...@gmail.com>
Authored: Tue May 26 15:51:06 2015 -0700
Committer: Parth Brahmbhatt <br...@gmail.com>
Committed: Tue May 26 15:51:06 2015 -0700

----------------------------------------------------------------------
 external/storm-jdbc/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/a633fe13/external/storm-jdbc/README.md
----------------------------------------------------------------------
diff --git a/external/storm-jdbc/README.md b/external/storm-jdbc/README.md
index 81632f1..192be73 100644
--- a/external/storm-jdbc/README.md
+++ b/external/storm-jdbc/README.md
@@ -49,7 +49,7 @@ to be used by some non-standard sql frameworks like Pheonix which only supports
 
 ### JdbcInsertBolt
 To use the `JdbcInsertBolt`, you construct an instance of it by specifying a `ConnectionProvider` implementation
-and a `JdbcMapper` implementation that coverts storm tuple to DB row. In addition, you must either supply
+and a `JdbcMapper` implementation that converts storm tuple to DB row. In addition, you must either supply
 a table name  using `withTableName` method or an insert query using `withInsertQuery`. 
 If you specify a insert query you should ensure that your `JdbcMapper` implementation will return a list of columns in the same order as in your insert query.
 You can optionally specify a query timeout seconds param that specifies max seconds an insert query can take.