Fix typos

Closes gh-35656
Signed-off-by: HJC96 <gkswlcjs2@naver.com>
This commit is contained in:
HJC96
2025-10-17 15:46:27 +02:00
committed by Sébastien Deleuze
parent 18a879779e
commit d7fc07e73c
3 changed files with 3 additions and 3 deletions
@@ -472,7 +472,7 @@ abstract class AbstractPropertyAccessorTests {
assertThat(target.getAge()).as("age is OK").isEqualTo(age);
assertThat(name).as("name is OK").isEqualTo(target.getName());
accessor.setPropertyValues(new MutablePropertyValues());
// Check its unchanged
// Check it's unchanged
assertThat(target.getAge()).as("age is OK").isEqualTo(age);
assertThat(name).as("name is OK").isEqualTo(target.getName());
}
@@ -110,7 +110,7 @@ class BridgeMethodResolver {
&& currentMethod != null) {
Signature target = new Signature(name, desc);
// If the target signature is the same as the current,
// we shouldn't change our bridge becaues invokespecial
// we shouldn't change our bridge because invokespecial
// is the only way to make progress (otherwise we'll
// get infinite recursion). This would typically
// only happen when a bridge method is created to widen
@@ -50,7 +50,7 @@ public abstract class Hints {
/**
* Create a map wit a single hint via {@link Collections#singletonMap}.
* Create a map with a single hint via {@link Collections#singletonMap}.
* @param hintName the hint name
* @param value the hint value
* @return the created map