Skip to content

Commit 41daca8

Browse files
committed
minor #7260 [Workflow] Add missing semicolon to workflow usage code block (dominikhajduk)
This PR was merged into the 3.2 branch. Discussion ---------- [Workflow] Add missing semicolon to workflow usage code block Fix second code block example on: http://symfony.com/doc/current/workflow/usage.html ``` class BlogPost { // This property is used by the marking store public $currentPlace; public $title; public $content // missing ; } ``` Commits ------- 96538b9 Fix typo in workflow usage code lock
2 parents 4f24b51 + 96538b9 commit 41daca8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflow/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ like this:
140140
// This property is used by the marking store
141141
public $currentPlace;
142142
public $title;
143-
public $content
143+
public $content;
144144
}
145145
146146
.. note::

0 commit comments

Comments
 (0)