This is an automated email from the ASF dual-hosted git repository.
dehowef pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age-website.git
The following commit(s) were added to refs/heads/master by this push:
new b75a3c0f Add in line support in operators docs (#221)
b75a3c0f is described below
commit b75a3c0f2e6ea6a4ce36dc5e2dafde983e432464
Author: ksheroz <[email protected]>
AuthorDate: Tue Oct 10 00:18:30 2023 +0500
Add in line support in operators docs (#221)
---
docs/intro/operators.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/intro/operators.md b/docs/intro/operators.md
index 48ae7702..fd734570 100644
--- a/docs/intro/operators.md
+++ b/docs/intro/operators.md
@@ -109,12 +109,12 @@ Results
### Regular Expressions
-AGE supports the use of [POSIX regular
expressions](https://www.postgresql.org/docs/11/functions-matching.html#FUNCTIONS-POSIX-REGEXP)
using the =~ operator. By default =~ is case sensitve.
+AGE supports the use of [POSIX regular
expressions](https://www.postgresql.org/docs/11/functions-matching.html#FUNCTIONS-POSIX-REGEXP)
using the `=~` operator. By default `=~` is case sensitve.
#### Basic String Matching
-The =~ operator when no special characters are given, act like the = operator.
+The `=~` operator when no special characters are given, act like the `=`
operator.
```postgresql
SELECT * FROM cypher('graph_name', $$
@@ -141,7 +141,7 @@ Results
#### Case insensitive search
-Adding (?i) at the beginning of the string will make the comparison case
insensitive
+Adding `(?i)` at the beginning of the string will make the comparison case
insensitive
```postgresql
SELECT * FROM cypher('graph_name', $$