diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cloudfoundry/AccessLevel.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cloudfoundry/AccessLevel.java index fe556f2a173..3bd7e7e4a22 100644 --- a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cloudfoundry/AccessLevel.java +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cloudfoundry/AccessLevel.java @@ -49,7 +49,7 @@ enum AccessLevel { /** * Returns if the access level should allow access to the specified endpoint path. - * @param endpointPath the endpoitn path + * @param endpointPath the endpoint path * @return {@code true} if access is allowed */ public boolean isAccessAllowed(String endpointPath) { diff --git a/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/cloudfoundry/SkipSslVerificationHttpRequestFactoryTests.java b/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/cloudfoundry/SkipSslVerificationHttpRequestFactoryTests.java index 68828b93f0e..9e6e02fb61f 100644 --- a/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/cloudfoundry/SkipSslVerificationHttpRequestFactoryTests.java +++ b/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/cloudfoundry/SkipSslVerificationHttpRequestFactoryTests.java @@ -45,7 +45,7 @@ public class SkipSslVerificationHttpRequestFactoryTests { public ExpectedException thrown = ExpectedException.none(); @Test - public void restCallToSelfSignedServershouldNotThrowSslException() throws Exception { + public void restCallToSelfSignedServerShouldNotThrowSslException() throws Exception { String httpsUrl = getHttpsUrl(); SkipSslVerificationHttpRequestFactory requestFactory = new SkipSslVerificationHttpRequestFactory(); RestTemplate restTemplate = new RestTemplate(requestFactory);