Syntax fix

This commit is contained in:
KylerSmith
2017-07-09 17:11:57 -07:00
parent ae7aba0b44
commit e00d95c417
2 changed files with 31 additions and 31 deletions

Binary file not shown.

View File

@ -42,7 +42,7 @@ class Stack{
top++;
stackArray[top] = value;
}else{
System.out.prinln("The stack is full, can't insert value");
System.out.println("The stack is full, can't insert value");
}
}