Fixing typo with wrong number of parenthesis.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2020-11-21 17:08:59 -05:00
parent 72098ee5b9
commit 3cb08d4d2c
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ BreaPage >> exportAsHTML [
self shortName ifNil: [ ^ self ].
self template ifNil: [ ^ self ].
actionsArray := { [ self populateMetadata ] future. }.
self splitters ifNotEmpty: [ actionsArray := actionsArray copyWith: [ [ self split ] future ] ].
self splitters ifNotEmpty: [ actionsArray := actionsArray copyWith: [ self split ] future ].
self bodyTag ifNotNil: [
actionsArray := actionsArray copyWith: [ self populateBodyAs: self bodyTag ] future ].
allActions := TKTFuture all: actionsArray.