Skip to content

Commit 71eb310

Browse files
committed
fix(fact): Fix type in separator
1 parent 3126a57 commit 71eb310

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/ContentBlocks/FactSet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function toArray(): array
8080
'type' => $this->type,
8181
'spacing' => $this->spacing,
8282
'facts' => $facts,
83-
'seperator' => $this->separator
83+
'separator' => $this->separator
8484
];
8585
}
8686
}

src/ContentBlocks/Icon.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ public function setSpacing(string $spacing): self
7676
}
7777

7878
/**
79-
* Set the seperator.
79+
* Set the separator.
8080
*
81-
* @param bool $seperator
81+
* @param bool $separator
8282
*
8383
* @return Icon
8484
*/

tests/MicrosoftTeamsAdaptiveCardTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ public function factsets_can_be_set_in_content(): void
265265
]
266266
],
267267
'spacing' => null,
268-
'seperator' => null
268+
'separator' => null
269269
],
270270
],
271271
'actions' => []

0 commit comments

Comments
 (0)