This is an automated email from the ASF dual-hosted git repository. benw pushed a commit to branch TAP5-2743 in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
The following commit(s) were added to refs/heads/TAP5-2743 by this push: new a082031f7 TAP5-2743: typo fixed a082031f7 is described below commit a082031f7d34367f45b241612bfaa548691b479d Author: Ben Weidig <b...@netzgut.net> AuthorDate: Sat Apr 22 11:41:58 2023 +0200 TAP5-2743: typo fixed --- tapestry-ioc/src/test/groovy/ioc/specs/PerThreadValueSpec.groovy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tapestry-ioc/src/test/groovy/ioc/specs/PerThreadValueSpec.groovy b/tapestry-ioc/src/test/groovy/ioc/specs/PerThreadValueSpec.groovy index 9bc15c6fb..3687b7479 100644 --- a/tapestry-ioc/src/test/groovy/ioc/specs/PerThreadValueSpec.groovy +++ b/tapestry-ioc/src/test/groovy/ioc/specs/PerThreadValueSpec.groovy @@ -33,7 +33,7 @@ class PerThreadValueSpec extends Specification { def "computeIfAbsent - pre-existing value"() { given: - def currentValue = "inital value" + def currentValue = "initial value" def newValue = "a computed value" PerThreadValue<String> perThreadValue = manager.createValue(); perThreadValue.set(currentValue) @@ -60,7 +60,7 @@ class PerThreadValueSpec extends Specification { def "computeIfPresent - no value"() { given: - def currentValue = "inital value" + def currentValue = "initial value" def newValue = "a computed value" PerThreadValue<String> perThreadValue = manager.createValue(); @@ -74,7 +74,7 @@ class PerThreadValueSpec extends Specification { def "computeIfPresent - pre-existing value"() { given: - def currentValue = "inital value" + def currentValue = "initial value" def newValue = "a computed value" PerThreadValue<String> perThreadValue = manager.createValue(); perThreadValue.set(currentValue) @@ -113,7 +113,7 @@ class PerThreadValueSpec extends Specification { def "compute - pre-existing value"() { given: - def currentValue = "inital value" + def currentValue = "initial value" def newValue = "a computed value" PerThreadValue<String> perThreadValue = manager.createValue(); perThreadValue.set(currentValue)