Skip to content

Commit d7fc07e

Browse files
HJC96sdeleuze
authored andcommitted
Fix typos
Closes gh-35656 Signed-off-by: HJC96 <gkswlcjs2@naver.com>
1 parent 18a8797 commit d7fc07e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-beans/src/test/java/org/springframework/beans/AbstractPropertyAccessorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ void setEmptyPropertyValues() {
472472
assertThat(target.getAge()).as("age is OK").isEqualTo(age);
473473
assertThat(name).as("name is OK").isEqualTo(target.getName());
474474
accessor.setPropertyValues(new MutablePropertyValues());
475-
// Check its unchanged
475+
// Check it's unchanged
476476
assertThat(target.getAge()).as("age is OK").isEqualTo(age);
477477
assertThat(name).as("name is OK").isEqualTo(target.getName());
478478
}

spring-core/src/main/java/org/springframework/cglib/proxy/BridgeMethodResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public void visitMethodInsn(
110110
&& currentMethod != null) {
111111
Signature target = new Signature(name, desc);
112112
// If the target signature is the same as the current,
113-
// we shouldn't change our bridge becaues invokespecial
113+
// we shouldn't change our bridge because invokespecial
114114
// is the only way to make progress (otherwise we'll
115115
// get infinite recursion). This would typically
116116
// only happen when a bridge method is created to widen

spring-core/src/main/java/org/springframework/core/codec/Hints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public abstract class Hints {
5050

5151

5252
/**
53-
* Create a map wit a single hint via {@link Collections#singletonMap}.
53+
* Create a map with a single hint via {@link Collections#singletonMap}.
5454
* @param hintName the hint name
5555
* @param value the hint value
5656
* @return the created map

0 commit comments

Comments
 (0)