diff --git a/spring-boot-project/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/restart/classloader/ClassLoaderFilesTests.java b/spring-boot-project/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/restart/classloader/ClassLoaderFilesTests.java index f80411656c..65ea8dab2a 100644 --- a/spring-boot-project/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/restart/classloader/ClassLoaderFilesTests.java +++ b/spring-boot-project/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/restart/classloader/ClassLoaderFilesTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2020 the original author or authors. + * Copyright 2012-2021 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. @@ -132,10 +132,10 @@ class ClassLoaderFilesTests { toAdd.addFile("a", "myfile2", file2); toAdd.addFile("b", "myfile3", file3); this.files.addAll(toAdd); - Iterator sourceDirectoryies = this.files.getSourceDirectories().iterator(); - SourceDirectory sourceDirectory1 = sourceDirectoryies.next(); - SourceDirectory sourceDirectory2 = sourceDirectoryies.next(); - assertThat(sourceDirectoryies.hasNext()).isFalse(); + Iterator sourceDirectories = this.files.getSourceDirectories().iterator(); + SourceDirectory sourceDirectory1 = sourceDirectories.next(); + SourceDirectory sourceDirectory2 = sourceDirectories.next(); + assertThat(sourceDirectories.hasNext()).isFalse(); assertThat(sourceDirectory1.getName()).isEqualTo("a"); assertThat(sourceDirectory2.getName()).isEqualTo("b"); assertThat(sourceDirectory1.getFiles()).containsOnly(file1, file2); diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/whats-next.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/whats-next.adoc index ea4701dd2a..70791bdeb7 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/whats-next.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/whats-next.adoc @@ -1,4 +1,4 @@ [[data.whats-next]] == What to Read Next You should now have a feeling for how to use Spring Boot with various data technologies. -From here, you can read about Spring Boot's support for various <> and how to enable them in your application. +From here, you can read about Spring Boot's support for various <> and how to enable them in your application. diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/messaging/whats-next.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/messaging/whats-next.adoc index 32bc01327e..0a285e0421 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/messaging/whats-next.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/messaging/whats-next.adoc @@ -1,4 +1,4 @@ [[messaging.whats-next]] == What to Read Next -The next section describes how to enable <> in your applicaiton. +The next section describes how to enable <> in your application. You can read about <>, <>, <>, <> and more in this section. \ No newline at end of file