Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Commit 050caa5

Browse files
committed
Fix typo
1 parent 27ea9be commit 050caa5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/php/libsdk/SDK/Config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,15 +276,15 @@ public static function getCurrentBranchData() : array
276276
}
277277
}
278278
if (!$cur_crt_usable) {
279-
throw new Exception("The passed CRT '$cur_crt' doesn't match any availbale for branch '$current_branch_name'");
279+
throw new Exception("The passed CRT '$cur_crt' doesn't match any available for branch '$current_branch_name'");
280280
}
281281
$data = $branches[$current_branch_name][$cur_crt];
282282
} else {
283283
/* Evaluate CRTs, to avoid ambiquity. */
284284
$crt = key($branches[$current_branch_name]);
285285
$data = $branches[$current_branch_name][$crt];
286286
if ($crt != $cur_crt) {
287-
throw new Exception("The passed CRT '$cur_crt' doesn't match any availbale for branch '$current_branch_name'");
287+
throw new Exception("The passed CRT '$cur_crt' doesn't match any available for branch '$current_branch_name'");
288288
}
289289
}
290290

0 commit comments

Comments
 (0)