Typo

1,875
reputation
1
19
32
function aboutMe(){
                    boolean alive = true;
                    while(alive){
                        this.work("7 hs.");
                        this.study();
                        if(this.lonely) {
                            super.socialize();
                        } else {
                            this.stayOnline();
                        }
                        this.eat();
                        this.sleep();            
                        alive = super.checkHealth();
                    }
                }