diff --git a/core/modules/workflows/src/WorkflowInterface.php b/core/modules/workflows/src/WorkflowInterface.php index 0efedea287a0bf78ecadb3e7cb69b52d08f477ef..77d4a31b4fbbf72596d6742213fac6d827b92bba 100644 --- a/core/modules/workflows/src/WorkflowInterface.php +++ b/core/modules/workflows/src/WorkflowInterface.php @@ -174,7 +174,7 @@ public function hasTransition($transition_id); public function getTransitions(array $transition_ids = NULL); /** - * Gets the transactions IDs for a state for the provided direction. + * Gets the transition IDs for a state for the provided direction. * * @param $state_id * The state to get transitions for. @@ -183,7 +183,7 @@ public function getTransitions(array $transition_ids = NULL); * values are: 'from' and 'to'. * * @return array - * The transactions IDs for a state for the provided direction. + * The transition IDs for a state for the provided direction. */ public function getTransitionsForState($state_id, $direction = 'from');