From 1f84668261b10ade8b4843832814148b743f677a Mon Sep 17 00:00:00 2001 From: Ahmed Ashour Date: Tue, 2 Nov 2021 15:53:02 +0100 Subject: [PATCH] Fix typo --- picocli-shell-jline2/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picocli-shell-jline2/README.md b/picocli-shell-jline2/README.md index c9c1c1819..d68d7f85c 100644 --- a/picocli-shell-jline2/README.md +++ b/picocli-shell-jline2/README.md @@ -223,7 +223,7 @@ public class InteractiveParameterConsumer implements IParameterConsumer { .format("Enter %s: ", argSpec.paramLabel()), '\0')); } catch (IOException e) { throw new CommandLine.ParameterException(commandSpec.commandLine() - , "Error while reading interactivly", e, argSpec, ""); + , "Error while reading interactively", e, argSpec, ""); } } }