Skip to content

Commit 711fd18

Browse files
authored
[docs] Fix small typo in security comments (#1199)
1 parent 7ff68d9 commit 711fd18

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

website/docs/quickstart/security.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Write data using the `developer` user:
319319
-- switch to developer user context
320320
USE CATALOG developer_catalog;
321321

322-
-- write data using developer credientials
322+
-- write data using developer credentials
323323
INSERT INTO fluss_order VALUES (1, 1.0);
324324
```
325325
The job should succeed as shown in the Flink UI.
@@ -330,7 +330,7 @@ Attempting to write data using the `consumer` user will fail in the Flink UI:
330330
-- switch to consumer user context
331331
USE CATALOG consumer_catalog;
332332

333-
-- write data using consumer credientials
333+
-- write data using consumer credentials
334334
INSERT INTO fluss_order VALUES (1, 1.0);
335335
```
336336
**Output:**
@@ -349,7 +349,7 @@ SET 'sql-client.execution.result-mode' = 'tableau';
349349

350350
-- switch to consumer user context
351351
USE CATALOG consumer_catalog;
352-
-- read data using consumer credientials
352+
-- read data using consumer credentials
353353
SELECT * FROM `consumer_catalog`.`fluss`.`fluss_order` LIMIT 10;
354354
```
355355
**Output:**
@@ -371,7 +371,7 @@ SET 'sql-client.execution.result-mode' = 'tableau';
371371
-- switch to developer user context
372372
USE CATALOG developer_catalog;
373373

374-
-- read data using developer credientials
374+
-- read data using developer credentials
375375
SELECT * FROM `developer_catalog`.`fluss`.`fluss_order` LIMIT 10;
376376
```
377377

@@ -556,7 +556,7 @@ The `marketing` user can only see the `marketing_db` database
556556
```sql title="Flink SQL"
557557
-- switch to marketing user context
558558
use catalog marketing_catalog;
559-
-- show databases using marketing user credientials
559+
-- show databases using marketing user credentials
560560
show databases;
561561
```
562562
**Output:**
@@ -573,7 +573,7 @@ The `finance` user can only see the `finance_db` database:
573573
```sql title="Flink SQL"
574574
-- switch to finance user context
575575
use catalog finance_catalog;
576-
-- show databases using finance user credientials
576+
-- show databases using finance user credentials
577577
show databases;
578578
```
579579

@@ -592,7 +592,7 @@ The `marketing` user can operate on their own database:
592592
```sql title="Flink SQL"
593593
-- switch to marketing user context
594594
use catalog marketing_catalog;
595-
-- create table using marketing user credientials
595+
-- create table using marketing user credentials
596596
CREATE TABLE `marketing_db`.`order` (
597597
`order_key` INT NOT NULL,
598598
`total_price` DECIMAL(15, 2),
@@ -610,7 +610,7 @@ The `finance` user cannot access the `marketing` database:
610610
```sql title="Flink SQL"
611611
-- switch to finance user context
612612
use catalog finance_catalog;
613-
-- create table using finance user credientials
613+
-- create table using finance user credentials
614614
CREATE TABLE `marketing_db`.`order` (
615615
`order_key` INT NOT NULL,
616616
`total_price` DECIMAL(15, 2),

0 commit comments

Comments
 (0)