File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
spring-beans/src/test/java/org/springframework/beans
spring-core/src/main/java/org/springframework Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments