summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorCarlos Ledesma <Ravenons@users.noreply.github.com>2019-05-15 15:49:36 +0200
committerGitHub <noreply@github.com>2019-05-15 15:49:36 +0200
commit14de679c9dccf03da6ccf62bf3733f609a944aeb (patch)
tree2e4fd2dc7b50d8f70d9e7181dfb73c7e25e946c7
parent30bc3f244b8f6f96d1d4f10753c06110c2a063d8 (diff)
Escaping underscores (unwanted italic)
-rw-r--r--cypher.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/cypher.html.markdown b/cypher.html.markdown
index acd44733..32868354 100644
--- a/cypher.html.markdown
+++ b/cypher.html.markdown
@@ -50,7 +50,7 @@ Relationships (or Edges)
**Connects two nodes**
`[:KNOWS]`
-It's a *relationship* with the *label* **KNOWS**. It's a *label* as the node's label. It begins with uppercase and use UPPER_SNAKE_CASE.
+It's a *relationship* with the *label* **KNOWS**. It's a *label* as the node's label. It begins with uppercase and use UPPER\_SNAKE\_CASE.
`[k:KNOWS]`
The same *relationship*, referred by the variable **k**, reusable in the query, but it's not necessary.