Automata indentation and link (#1425)
* finite automata example * indentation and link
This commit is contained in:
committed by
Grzegorz Piwowarek
parent
9d0cb1e2aa
commit
202a19acbf
@@ -5,12 +5,12 @@ package com.baeldung.automata;
|
||||
*/
|
||||
public interface State {
|
||||
|
||||
/**
|
||||
* Add a Transition to this state.
|
||||
* @param tr Given transition.
|
||||
* @return Modified State.
|
||||
*/
|
||||
State with(final Transition tr);
|
||||
/**
|
||||
* Add a Transition to this state.
|
||||
* @param tr Given transition.
|
||||
* @return Modified State.
|
||||
*/
|
||||
State with(final Transition tr);
|
||||
|
||||
/**
|
||||
* Follow one of the transitions, to get
|
||||
|
||||
Reference in New Issue
Block a user