Fix typo in exception message Closes #102
Patch by Bruno P. Kinoshita ; Reviewed by Jeff Jirsa for CASSANDRA-13381 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/23cd27fc Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/23cd27fc Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/23cd27fc Branch: refs/heads/trunk Commit: 23cd27fcfac32d6bbbadf0211472585452021410 Parents: 595d586 Author: Bruno P. Kinoshita <[email protected]> Authored: Sun Mar 26 22:59:27 2017 +1300 Committer: Jeff Jirsa <[email protected]> Committed: Sun Mar 26 19:44:24 2017 -0700 ---------------------------------------------------------------------- src/java/org/apache/cassandra/db/Clustering.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/23cd27fc/src/java/org/apache/cassandra/db/Clustering.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/db/Clustering.java b/src/java/org/apache/cassandra/db/Clustering.java index 772961f..e585a8f 100644 --- a/src/java/org/apache/cassandra/db/Clustering.java +++ b/src/java/org/apache/cassandra/db/Clustering.java @@ -140,7 +140,7 @@ public interface Clustering extends ClusteringPrefix } catch (IOException e) { - throw new RuntimeException("Writting to an in-memory buffer shouldn't trigger an IOException", e); + throw new RuntimeException("Writing to an in-memory buffer shouldn't trigger an IOException", e); } }
