From f2fd2a1b8ca8f0f267bdba669f8213154ba87bbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Andri=C4=87?= Date: Wed, 3 Jan 2018 15:40:22 -0500 Subject: [PATCH] DATACASS-516 - Add return type to sample code in reference docs. Original pull request: #117. --- src/main/asciidoc/reference/cassandra.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/reference/cassandra.adoc b/src/main/asciidoc/reference/cassandra.adoc index c4ba1994e..59eb91f36 100644 --- a/src/main/asciidoc/reference/cassandra.adoc +++ b/src/main/asciidoc/reference/cassandra.adoc @@ -345,7 +345,7 @@ public class AppConfig extends AbstractCassandraConfiguration { /* * Provide a keyspace name to the configuration. */ - public getKeyspaceName() { + public String getKeyspaceName() { return "mykeyspace"; } }