Commit bf294a76 authored by Andy Wilkinson's avatar Andy Wilkinson

Polish

parent 89fdc856
...@@ -40,7 +40,7 @@ import org.springframework.util.StringUtils; ...@@ -40,7 +40,7 @@ import org.springframework.util.StringUtils;
* @author Phillip Webb * @author Phillip Webb
* @author Eddú Meléndez * @author Eddú Meléndez
* @author Stephane Nicoll * @author Stephane Nicoll
* @auther Steffen F. Qvistgaard * @author Steffen F. Qvistgaard
* @since 1.3.0 * @since 1.3.0
*/ */
@Configuration(proxyBeanMethods = false) @Configuration(proxyBeanMethods = false)
......
...@@ -20,10 +20,10 @@ import com.datastax.driver.core.Cluster; ...@@ -20,10 +20,10 @@ import com.datastax.driver.core.Cluster;
import com.datastax.driver.core.Cluster.Initializer; import com.datastax.driver.core.Cluster.Initializer;
/** /**
* {@code CassandraClusterFactory} provides control over the creation of a {@Cluster} from * {@code ClusterFactory} provides control over the creation of a {@link Cluster} from an
* an {@link Initializer}. * {@link Initializer}.
* *
* @auther Steffen F. Qvistgaard * @author Steffen F. Qvistgaard
* @since 2.2.0 * @since 2.2.0
*/ */
@FunctionalInterface @FunctionalInterface
...@@ -31,7 +31,7 @@ public interface ClusterFactory { ...@@ -31,7 +31,7 @@ public interface ClusterFactory {
/** /**
* Creates a {@link Cluster} from the given {@link Initializer}. * Creates a {@link Cluster} from the given {@link Initializer}.
* @param initializer the {@Code Initializer} * @param initializer the {@code Initializer}
* @return the {@code Cluster} * @return the {@code Cluster}
*/ */
Cluster create(Initializer initializer); Cluster create(Initializer initializer);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment