You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jj...@apache.org on 2017/03/13 05:03:47 UTC

cassandra git commit: Fix typo in documentation

Repository: cassandra
Updated Branches:
  refs/heads/trunk dd5251c46 -> 666a00089


Fix typo in documentation

Patch by Suresh C; Reviewed by Anthony Grasso  for CASSANDRA-12719


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/666a0008
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/666a0008
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/666a0008

Branch: refs/heads/trunk
Commit: 666a00089cb40f8d84f2974070b18c0744acbb9b
Parents: dd5251c
Author: Suresh <su...@sureshs-imac.home>
Authored: Mon Dec 12 22:39:43 2016 +0000
Committer: Jeff Jirsa <je...@jeffjirsa.net>
Committed: Sun Mar 12 22:02:26 2017 -0700

----------------------------------------------------------------------
 doc/source/cql/ddl.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/666a0008/doc/source/cql/ddl.rst
----------------------------------------------------------------------
diff --git a/doc/source/cql/ddl.rst b/doc/source/cql/ddl.rst
index fb97e54..756b18e 100644
--- a/doc/source/cql/ddl.rst
+++ b/doc/source/cql/ddl.rst
@@ -359,7 +359,7 @@ instance, given::
         a int,
         b int,
         c int,
-        PRIMARY KEY (a, c, d)
+        PRIMARY KEY (a, b, c)
     );
 
     SELECT * FROM t;