From 6008603c29ea8d9c9e428b094ff55e066b0f8637 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Wed, 13 Nov 2019 10:50:17 -0600 Subject: Fix typo --- csci1913/Java/lab9_strap012.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'csci1913/Java') diff --git a/csci1913/Java/lab9_strap012.java b/csci1913/Java/lab9_strap012.java index 94a003c..8dd0032 100644 --- a/csci1913/Java/lab9_strap012.java +++ b/csci1913/Java/lab9_strap012.java @@ -70,7 +70,7 @@ class ArrayQueue { where = (where + 1) % bases.length; return temp; } else { - throw new IllegalStateException("Queues at its end."); + throw new IllegalStateException("Queue is at its end."); } } public void remove() { -- cgit v1.2.3