Example code typo

Change "there where" to "there were" and added space between modify count and next word.
This commit is contained in:
Matthew Merrill
2016-06-27 09:07:45 -07:00
committed by GitHub
parent 1f9ccf1c8b
commit 2c34bc1636
+2 -2
View File
@@ -26,7 +26,7 @@ package com.avaje.ebean;
*
* int modifiedCount = Ebean.execute(update);
*
* String msg = "There where " + modifiedCount + "rows updated"
* String msg = "There were " + modifiedCount + " rows updated"
* </pre>
*
* @see Update
@@ -143,4 +143,4 @@ public interface SqlUpdate {
*/
SqlUpdate setNullParameter(String name, int jdbcType);
}
}