From c5658fc4d98c339d9bc6d45f2cc566456c339d2a Mon Sep 17 00:00:00 2001 From: Chris Hillery Date: Fri, 17 Jun 2016 16:41:22 -0700 Subject: [PATCH] Fix code-quoting --- couchbase/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchbase/content.md b/couchbase/content.md index ae4388913..a9a538cfb 100644 --- a/couchbase/content.md +++ b/couchbase/content.md @@ -33,7 +33,7 @@ Walk through the Setup wizard and accept the default values. N1QL is the SQL based query language for Couchbase Server. Simply switch to the Query tab on the Web Console at `http://localhost:8091` and run the following N1QL Query in the query window: -```SELECT name FROM `beer-sample` WHERE brewery_id ="mishawaka_brewing";``` + SELECT name FROM `beer-sample` WHERE brewery_id ="mishawaka_brewing"; You can also execute N1QL queries from the commandline. To run a query from command line query tool, run the interactive shell on the container: @@ -43,7 +43,7 @@ Then, navigate to the `bin` directory under Couchbase Server installation and ru `/opt/couchbase/bin/cbq` -```cbq> SELECT name FROM `beer-sample` WHERE brewery_id ="mishawaka_brewing";``` + cbq> SELECT name FROM `beer-sample` WHERE brewery_id ="mishawaka_brewing"; For more query samples, refer to the [Running your first N1QL query](http://developer.couchbase.com/documentation/server/4.5/getting-started/first-n1ql-query.html) guide.