From 5387386c216f417620954efefe1dbeb97d2bae6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Yngve=20Lerv=C3=A5g?= Date: Tue, 10 Sep 2024 23:29:20 +0200 Subject: [PATCH] fix: serverIdleTimeOut -> serverIdleTimeout Use consistent name for the option. The variable is named `serverIdleTimeout` and this also seems the proper camelcasing of the words. --- main-command/src/main/scala/sbt/BasicKeys.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main-command/src/main/scala/sbt/BasicKeys.scala b/main-command/src/main/scala/sbt/BasicKeys.scala index a7d45b82b..9e18a97da 100644 --- a/main-command/src/main/scala/sbt/BasicKeys.scala +++ b/main-command/src/main/scala/sbt/BasicKeys.scala @@ -94,7 +94,7 @@ object BasicKeys { val serverIdleTimeout = AttributeKey[Option[FiniteDuration]]( - "serverIdleTimeOut", + "serverIdleTimeout", "If set to a defined value, sbt server will exit if it goes at least the specified duration without receiving any commands.", 10000 )