Skip to content

Commit bf294a7

Browse files
committed
Polish
1 parent 89fdc85 commit bf294a7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* @author Phillip Webb
4141
* @author Eddú Meléndez
4242
* @author Stephane Nicoll
43-
* @auther Steffen F. Qvistgaard
43+
* @author Steffen F. Qvistgaard
4444
* @since 1.3.0
4545
*/
4646
@Configuration(proxyBeanMethods = false)

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/ClusterFactory.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@
2020
import com.datastax.driver.core.Cluster.Initializer;
2121

2222
/**
23-
* {@code CassandraClusterFactory} provides control over the creation of a {@Cluster} from
24-
* an {@link Initializer}.
23+
* {@code ClusterFactory} provides control over the creation of a {@link Cluster} from an
24+
* {@link Initializer}.
2525
*
26-
* @auther Steffen F. Qvistgaard
26+
* @author Steffen F. Qvistgaard
2727
* @since 2.2.0
2828
*/
2929
@FunctionalInterface
3030
public interface ClusterFactory {
3131

3232
/**
3333
* Creates a {@link Cluster} from the given {@link Initializer}.
34-
* @param initializer the {@Code Initializer}
34+
* @param initializer the {@code Initializer}
3535
* @return the {@code Cluster}
3636
*/
3737
Cluster create(Initializer initializer);

0 commit comments

Comments
 (0)