Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Unsubscribed User
427 PointsCannot find symbol error in my Hangman game.
I'm actually writting this code :
public class Hangman {
public static void main(String[] args) {
Game game = new Game("elephant");
Prompter prompter = new Prompter(game);
boolean isHit = promter.promtForGuess();
if(isHit) {
System.out.println("You got a hit !");
} else {
System.out.println("Whoops that was a miss...");
}
}
}
But when I'm compiling it this error came out :
Hangman.java:6: error: cannot find symbol
boolean isHit = promter.promtForGuess();
^
symbol: variable promter
location: class Hangman
And I search how to fix this but I did not succeed. How can I fix this ?
1 Answer

Simon Coates
28,692 Pointsspelling mistake. 'promter' should be 'prompter'
Unsubscribed User
427 PointsUnsubscribed User
427 PointsYou right ! The simplest errors are sometimes the most difficult to see. Thanks a lot !