Skip to content

Commit

Permalink
Fix wrong call in Pharo 11
Browse files Browse the repository at this point in the history
  • Loading branch information
chisandrei committed May 17, 2024
1 parent 95a7b8a commit eee8455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Brick-Editor/BrRBTextStyler.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ BrRBTextStyler >> visitClassVariableNode: aNode [

{ #category : #visiting }
BrRBTextStyler >> visitEnglobingErrorNode: anEnglobingErrorNode [
anEnglobingErrorNode content do: [ :each | self visitNode: each ]
anEnglobingErrorNode contents do: [ :each | self visitNode: each ]
]

{ #category : #visiting }
Expand Down

0 comments on commit eee8455

Please sign in to comment.