Skip to content

Fix typos #45411

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public int hashCode() {

@Override
public String toString() {
return "system envionement variable [" + this.variableName + "] content loaded using "
return "system environment variable [" + this.variableName + "] content loaded using "
+ ClassUtils.getShortName(this.loader.getClass());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void loadLoadsConfigData() throws IOException {
void loadWhenNoContentThrowsException() {
assertThatExceptionOfType(ConfigDataResourceNotFoundException.class)
.isThrownBy(() -> this.loader.load(this.context, createResource("VAR1")))
.withMessage("Config data resource 'system envionement variable [VAR1] content "
.withMessage("Config data resource 'system environment variable [VAR1] content "
+ "loaded using PropertiesPropertySourceLoader' cannot be found");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void equalsAndHashcode() {
void toStringReturnsString() {
SystemEnvironmentConfigDataResource resource = createResource("VAR1");
assertThat(resource)
.hasToString("system envionement variable [VAR1] content loaded using PropertiesPropertySourceLoader");
.hasToString("system environment variable [VAR1] content loaded using PropertiesPropertySourceLoader");
}

private SystemEnvironmentConfigDataResource createResource(String variableName) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class ReactorClientHttpRequestFactoryBuilderTests
}

@Test
void withwithHttpClientFactory() {
void withHttpClientFactory() {
boolean[] called = new boolean[1];
Supplier<HttpClient> httpClientFactory = () -> {
called[0] = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class ReactorClientHttpConnectorBuilderTests
}

@Test
void withwithHttpClientFactory() {
void withHttpClientFactory() {
boolean[] called = new boolean[1];
Supplier<HttpClient> httpClientFactory = () -> {
called[0] = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void customizeWhenHasRenameRenamesMember() {
}

@Test
void customizeWhenHasAddAddsMemeber() {
void customizeWhenHasAddAddsMember() {
StructuredLoggingJsonProperties properties = new StructuredLoggingJsonProperties(Collections.emptySet(),
Collections.emptySet(), Collections.emptyMap(), Map.of("z", "z"), null, null, null);
StructuredLoggingJsonPropertiesJsonMembersCustomizer customizer = new StructuredLoggingJsonPropertiesJsonMembersCustomizer(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2023 the original author or authors.
* Copyright 2012-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -25,7 +25,7 @@ import org.springframework.aot.hint.RuntimeHints
/**
* Tests for {@link BindableRuntimeHintsRegistrar}.
*
* @author Andy Wilkinsin
* @author Andy Wilkinson
*/
class KotlinBindableRuntimeHintsRegistrarTests {

Expand Down
Loading