Skip to content
Snippets Groups Projects
Commit 6f9a9431 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix typo

parent 645c92b9
No related branches found
No related tags found
No related merge requests found
......@@ -104,12 +104,12 @@ public:
/**
* @return automaton epsilon transitions from state
*/
std::map<State, std::set<State> > getEpsilonTransitionsFromState(const State& to) const;
std::map<State, std::set<State> > getEpsilonTransitionsFromState(const State& from) const;
 
/**
* @return automaton transitions from state reading some symbols
*/
std::map<std::pair<State, alphabet::Symbol>, std::set<State> > getSymbolTransitionsFromState(const State& to) const;
std::map<std::pair<State, alphabet::Symbol>, std::set<State> > getSymbolTransitionsFromState(const State& from) const;
/**
* @return automaton transitions to state
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment