Skip to content

Commit

Permalink
Fix broken code formatting (#901)
Browse files Browse the repository at this point in the history
Ensure that code blocks are properly rendered:
- remove trailing spaces
- escape backticks

(cherry picked from commit 5953873)
  • Loading branch information
JackPGreen authored and GitHub Actions Bot committed Nov 21, 2023
1 parent 3c97e6f commit 6edf8de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/faq.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ For example, you can execute the below command on one member (i.e. listening on

And you can execute the below command on the other member.

`iperf -c` *`<IP address>`* `-d -p 5701`
`iperf -c *``<IP address>``* -d -p 5701`

The output should include connection information, such as the IP addresses, transfer speed and bandwidth.
Otherwise, if the output says `No route to host`, it means a network connection problem exists.
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/query/pages/predicate-overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ xref:sql-overview.adoc[] for more information.

SQL-like predicates support the following syntax:

**AND/OR:** `<expression> AND <expression> AND <expression>... `
**AND/OR:** `<expression> AND <expression> AND <expression>...`

* `active AND age>30`
* `active=false OR age = 45 OR name = 'Joe'`
Expand Down

0 comments on commit 6edf8de

Please sign in to comment.