summaryrefslogtreecommitdiff
path: root/javascripts/Nfa2Dfa.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascripts/Nfa2Dfa.js')
-rw-r--r--javascripts/Nfa2Dfa.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/javascripts/Nfa2Dfa.js b/javascripts/Nfa2Dfa.js
index a29683e..a8132fc 100644
--- a/javascripts/Nfa2Dfa.js
+++ b/javascripts/Nfa2Dfa.js
@@ -32,7 +32,7 @@ Nfa2Dfa.prototype.getStartState = function() { return this.startState; };
Nfa2Dfa.prototype.getFinalState = function() { return this.finalState; };
// Do conversion.
-Nfa2Dfa.prototype.do = function() {
+Nfa2Dfa.prototype.convert = function() {
var dfaStates = new Stack();
var q = new Stack();
q.push(this.getStartState());