diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraAutoConfiguration.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraAutoConfiguration.java index 35f91e454d0..4b593cb2504 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraAutoConfiguration.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraAutoConfiguration.java @@ -40,7 +40,7 @@ import org.springframework.util.StringUtils; * @author Phillip Webb * @author EddĂș MelĂ©ndez * @author Stephane Nicoll - * @auther Steffen F. Qvistgaard + * @author Steffen F. Qvistgaard * @since 1.3.0 */ @Configuration(proxyBeanMethods = false) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/ClusterFactory.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/ClusterFactory.java index 73d8684c1e6..83dcb773ffc 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/ClusterFactory.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/ClusterFactory.java @@ -20,10 +20,10 @@ import com.datastax.driver.core.Cluster; import com.datastax.driver.core.Cluster.Initializer; /** - * {@code CassandraClusterFactory} provides control over the creation of a {@Cluster} from - * an {@link Initializer}. + * {@code ClusterFactory} provides control over the creation of a {@link Cluster} from an + * {@link Initializer}. * - * @auther Steffen F. Qvistgaard + * @author Steffen F. Qvistgaard * @since 2.2.0 */ @FunctionalInterface @@ -31,7 +31,7 @@ public interface ClusterFactory { /** * Creates a {@link Cluster} from the given {@link Initializer}. - * @param initializer the {@Code Initializer} + * @param initializer the {@code Initializer} * @return the {@code Cluster} */ Cluster create(Initializer initializer);