Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java

Cannot 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
Simon Coates
28,694 Points

spelling mistake. 'promter' should be 'prompter'

You right ! The simplest errors are sometimes the most difficult to see. Thanks a lot !