aboutsummaryrefslogtreecommitdiffstats
path: root/csci1913
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2019-11-13 10:50:17 -0600
committerRossTheRoss <msattr@gmail.com>2019-11-13 10:50:17 -0600
commit6008603c29ea8d9c9e428b094ff55e066b0f8637 (patch)
treed1653b0579ab5bdce7f6c7e527bfbce2816d10fe /csci1913
parentDo lab 9, rearrange lab 6 stuff (diff)
downloadhomework-6008603c29ea8d9c9e428b094ff55e066b0f8637.tar
homework-6008603c29ea8d9c9e428b094ff55e066b0f8637.tar.gz
homework-6008603c29ea8d9c9e428b094ff55e066b0f8637.tar.bz2
homework-6008603c29ea8d9c9e428b094ff55e066b0f8637.tar.lz
homework-6008603c29ea8d9c9e428b094ff55e066b0f8637.tar.xz
homework-6008603c29ea8d9c9e428b094ff55e066b0f8637.tar.zst
homework-6008603c29ea8d9c9e428b094ff55e066b0f8637.zip
Fix typo
Diffstat (limited to 'csci1913')
-rw-r--r--csci1913/Java/lab9_strap012.java2
1 files changed, 1 insertions, 1 deletions
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<Base> {
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() {