From 2c34bc1636e9989ff7df3233acd715a59bdf523c Mon Sep 17 00:00:00 2001 From: Matthew Merrill Date: Mon, 27 Jun 2016 09:07:45 -0700 Subject: [PATCH] Example code typo Change "there where" to "there were" and added space between modify count and next word. --- src/main/java/com/avaje/ebean/SqlUpdate.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/avaje/ebean/SqlUpdate.java b/src/main/java/com/avaje/ebean/SqlUpdate.java index 25eda5bdc..5fe6022a9 100644 --- a/src/main/java/com/avaje/ebean/SqlUpdate.java +++ b/src/main/java/com/avaje/ebean/SqlUpdate.java @@ -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" * * * @see Update @@ -143,4 +143,4 @@ public interface SqlUpdate { */ SqlUpdate setNullParameter(String name, int jdbcType); -} \ No newline at end of file +}