Skip to content

Commit dce9105

Browse files
committed
NInth Commit
1 parent e1e881c commit dce9105

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Hashtable/HashChainApp.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public static void main(String[] args) throws IOException
160160

161161
while(true)
162162
{
163-
System.out.print("Emter first leter of ");
163+
System.out.print("Enter first leter of ");
164164
System.out.print("show, insert, delete, or find: ");
165165
char choice = getChar();
166166
switch(choice)
@@ -184,7 +184,7 @@ public static void main(String[] args) throws IOException
184184
aKey = getInt();
185185
aDataItem = theHashTable.find(aKey);
186186
if(aDataItem != null)
187-
System.out.print("Found " + aKey);
187+
System.out.print("Found " + aKey + "\n");
188188
else
189189
System.out.println("Could not find " + aKey);
190190
break;

0 commit comments

Comments
 (0)