From 3cb08d4d2cc6e4f1e730f5539e7ee17076fbe96b Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sat, 21 Nov 2020 17:08:59 -0500 Subject: [PATCH] Fixing typo with wrong number of parenthesis. --- repository/Brea/BreaPage.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/Brea/BreaPage.class.st b/repository/Brea/BreaPage.class.st index ea3845d..94a47ab 100644 --- a/repository/Brea/BreaPage.class.st +++ b/repository/Brea/BreaPage.class.st @@ -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.