From 2807dced0b84f43f4479d26a088a9c8185033b4d Mon Sep 17 00:00:00 2001 From: chengehe Date: Thu, 6 Jun 2024 17:47:08 +0800 Subject: [PATCH] chore: correct the use of article Signed-off-by: chengehe --- .../main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt index 681c46be52b3..3766f267f05f 100644 --- a/processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt +++ b/processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt @@ -39,7 +39,7 @@ class ParentMustHaveChainAndType: Exception("parent must have fields 'chain' and class ParentHasExtraFields(fields: Set): Exception("parent has extra field: $fields") class ParentBridgeNoArray: Exception("parent bridge must be array") class BridgeNoObject: Exception("parent bridges must be array consisting of json objects") -class BridgeOnlyURL: Exception("parent bridge only contain an URL") +class BridgeOnlyURL: Exception("parent bridge only contain a URL") class ParentChainDoesNotExist(chain: String): Exception("Referenced parent chain ($chain) does not exist") class StatusMustBeString: Exception("status must be a string") class StatusMustBeIncubatingActiveOrDeprecated: Exception("status must be either incubating, active or deprecated")