From 729c0c8546243be123e8fa2a35c71c1449497562 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Pazos=20Guti=C3=A9rrez?= Date: Wed, 15 May 2024 05:24:24 -0300 Subject: [PATCH] fixed small typo (#5934) --- .../src/main/java/ca/uhn/fhir/to/TesterConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hapi-fhir-testpage-overlay/src/main/java/ca/uhn/fhir/to/TesterConfig.java b/hapi-fhir-testpage-overlay/src/main/java/ca/uhn/fhir/to/TesterConfig.java index 95e9334aa6e..05b420b0781 100644 --- a/hapi-fhir-testpage-overlay/src/main/java/ca/uhn/fhir/to/TesterConfig.java +++ b/hapi-fhir-testpage-overlay/src/main/java/ca/uhn/fhir/to/TesterConfig.java @@ -152,7 +152,7 @@ public class TesterConfig { if (nextSplit.length < 3) { throw new IllegalArgumentException( - Msg.code(195) + "Invalid serveer line '" + nextRaw + "' - Must be comma separated"); + Msg.code(195) + "Invalid server line '" + nextRaw + "' - Must be comma separated"); } else { Validate.notBlank(nextSplit[0], "theId can not be blank"); Validate.notBlank(nextSplit[1], "theVersion can not be blank");