Skip to content

Commit b43bddb

Browse files
committed
changelog fix.
1 parent 770df05 commit b43bddb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We added a new type of a validator: step validator. It allows to restrict a plac
66
createStepModel<WriteSocketStep>('writeSocket', 'task', step => {
77
step.validator({
88
validate(context: StepValidatorContext) {
9-
const parentTypes = context.getParentStepTypes()
9+
const parentTypes = context.getParentStepTypes();
1010
return parentTypes.includes('socket');
1111
? null // No errors
1212
: 'The write socket step must be inside a socket.';

0 commit comments

Comments
 (0)