Skip to content

Commit d77576c

Browse files
authored
Merge pull request #25 from aneshodza/feature/fix-jsdocs-for-run
Fix jsdocs for run by adding missing param
2 parents b88145e + 59cd537 commit d77576c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/PushdownAutomaton.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class PushdownAutomaton {
2929

3030
/**
3131
* Runs the automaton until the input word is fully processed or a failure occurs.
32+
* @param {string} inputWord - The input word to be processed by the automaton. If not provided, the input word must have been set previously.
3233
* @returns {TerminationMessage} An object describing the result of the execution.
3334
*/
3435
run(inputWord: string|undefined = undefined): TerminationMessage {

0 commit comments

Comments
 (0)