function totalMisspellings() {
    var total_words = 0;
    for( var i = 0; i < this.textInputs.length; i++ ) {
        total_words += this.totalWords( i );
    }