Skip to content

Commit

Permalink
docs: Remove redundant space (#2105)
Browse files Browse the repository at this point in the history
Signed-off-by: hi-rustin <[email protected]>
  • Loading branch information
Rustin170506 committed Jul 18, 2023
1 parent 9dd31a1 commit eee1f62
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/en_US/guide/sinks/builtin/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Below is a sample for selecting temperature greater than 50 degree, and some pro
```json
{
"id": "redis",
"sql": "SELECT * from demo_stream where temperature > 50",
"sql": "SELECT * from demo_stream where temperature > 50",
"actions": [
{
"log": {},
Expand Down
2 changes: 1 addition & 1 deletion docs/en_US/guide/sinks/plugin/influx.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Below is a sample for selecting temperature great than 50 degree, and some profi
```json
{
"id": "influx",
"sql": "SELECT * from demo_stream where temperature > 50",
"sql": "SELECT * from demo_stream where temperature > 50",
"actions": [
{
"log": {},
Expand Down
2 changes: 1 addition & 1 deletion docs/en_US/guide/sinks/plugin/influx2.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Below is a sample for selecting temperature great than 50 degree, and some profi
```json
{
"id": "influx",
"sql": "SELECT * from demo_stream where temperature > 50",
"sql": "SELECT * from demo_stream where temperature > 50",
"actions": [
{
"log": {},
Expand Down
6 changes: 3 additions & 3 deletions docs/en_US/guide/sinks/plugin/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ Below is a sample for selecting temperature great than 50 degree, and some profi
```json
{
"id": "kafka",
"sql": "SELECT * from demo_stream where temperature > 50",
"sql": "SELECT * from demo_stream where temperature > 50",
"actions": [
{
"log": {}
},
{
{
"kafka":{
"brokers": "127.0.0.1:9092,127.0.0.2:9092",
"topic": "test_topic",
Expand Down Expand Up @@ -125,7 +125,7 @@ But kafka needs special attention `` KAFKA_CFG_ADVERTISED_LISTENERS `` needs to
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
- KAFKA_CFG_LISTENERS=PLAINTEXT://:9092
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://122.9.166.75:9092
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://<YOUR_HOST_IP>:9092
depends_on:
- zookeeper
```
2 changes: 1 addition & 1 deletion docs/zh_CN/guide/sinks/builtin/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
```json
{
"id": "redis",
"sql": "SELECT * from demo_stream where temperature > 50",
"sql": "SELECT * from demo_stream where temperature > 50",
"actions": [
{
"log": {},
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_CN/guide/sinks/plugin/influx.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
```json
{
"id": "influx",
"sql": "SELECT * from demo_stream where temperature > 50",
"sql": "SELECT * from demo_stream where temperature > 50",
"actions": [
{
"log": {},
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_CN/guide/sinks/plugin/influx2.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ $(PLUGINS_CUSTOM):
```json
{
"id": "influx",
"sql": "SELECT * from demo_stream where temperature > 50",
"sql": "SELECT * from demo_stream where temperature > 50",
"actions": [
{
"log": {},
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_CN/guide/sinks/plugin/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ $(PLUGINS_CUSTOM):
```json
{
"id": "kafka",
"sql": "SELECT * from demo_stream where temperature > 50",
"sql": "SELECT * from demo_stream where temperature > 50",
"actions": [
{
"log": {}
Expand Down

0 comments on commit eee1f62

Please sign in to comment.