Skip to content

Commit d849a90

Browse files
committed
minor symfony#12743 Small typo in workflow.rst (Alsciende)
This PR was merged into the 4.3 branch. Discussion ---------- Small typo in workflow.rst Replaced `worflowRegistry` with `workflowRegistry`. Earliest appearance of the typo is in 4.3. Commits ------- d1edbfd Small typo in workflow.rst
2 parents 9007f8d + d1edbfd commit d849a90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

workflow.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,16 +227,16 @@ registry in the constructor::
227227
class MyClass
228228
{
229229
230-
private $worflowRegistry;
230+
private $workflowRegistry;
231231
232232
public function __construct(Registry $workflowRegistry)
233233
{
234-
$this->worflowRegistry = $worflowRegistry;
234+
$this->workflowRegistry = $workflowRegistry;
235235
}
236236
237237
public function toReview(BlogPost $blogPost)
238238
{
239-
$workflow = $this->worflowRegistry->get($blogPost);
239+
$workflow = $this->workflowRegistry->get($blogPost);
240240
241241
// Update the currentState on the post
242242
try {

0 commit comments

Comments
 (0)