Skip to content

Commit b234e2f

Browse files
committed
Fix typos.
1 parent f95ba1b commit b234e2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Collections/Workflows.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function create($type, array $options = []): Workflow
112112
// This request is expected to fail for an unsupported site, throw exception.
113113
throw new TerminusUnsupportedSiteException($decoded_body->message);
114114
} elseif (!empty($decoded_body) && !empty($decoded_body->reason)) {
115-
// This request is expected to fail, use generic reson.
115+
// This request is expected to fail, use generic reason.
116116
throw new TerminusUnsupportedSiteException(
117117
Request::UNSUPPORTED_SITE_EXCEPTION_MESSAGE
118118
);

src/Request/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ public function request($path, array $options = []): RequestOperationResult
449449
// This request is expected to fail for an unsupported site, throw exception.
450450
throw new TerminusUnsupportedSiteException($decoded_body->message);
451451
} elseif (!empty($decoded_body) && !empty($decoded_body->reason)) {
452-
// This request is expected to fail, use generic reson.
452+
// This request is expected to fail, use generic reason.
453453
throw new TerminusUnsupportedSiteException(
454454
self::UNSUPPORTED_SITE_EXCEPTION_MESSAGE
455455
);

0 commit comments

Comments
 (0)