Skip to content

Commit d0b4d66

Browse files
authored
Docs tweaks (#942)
* Update index.mdx * Fix code snippets syntax
1 parent e7f6059 commit d0b4d66

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

website/docs/getting-started/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ sql> show tables
145145
| table_catalog | table_schema | table_name | table_type |
146146
+---------------+--------------+---------------+------------+
147147
| spice | public | taxi_trips | BASE TABLE |
148-
| spice | runtime | task_history | BASE TABLE |
148+
| spice | runtime | task_history | BASE TABLE |
149149
| spice | runtime | metrics | BASE TABLE |
150150
+---------------+--------------+---------------+------------+
151151

website/docs/getting-started/spiceai.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ spice dataset configure
5757

5858
Enter a dataset name that will be used to reference the dataset in queries. This name does not need to match the name in the dataset source.
5959

60-
```bash
60+
```yaml
6161
dataset name: (spice_app) taxi_trips
6262
```
6363
@@ -69,7 +69,7 @@ description: Taxi trips dataset
6969
7070
Enter the location of the dataset:
7171
72-
```bash
72+
```yaml
7373
from: spice.ai/spiceai/quickstart/datasets/taxi_trips
7474
```
7575
@@ -89,11 +89,11 @@ You should see the following output from your runtime terminal:
8989

9090
**Step 5.** In a new terminal window, use the Spice SQL REPL to query the dataset
9191

92-
```bash
92+
```sql
9393
spice sql
9494
```
9595

96-
```bash
96+
```sql
9797
SELECT tpep_pickup_datetime, passenger_count, trip_distance from taxi_trips LIMIT 10;
9898
```
9999

@@ -122,8 +122,8 @@ You can experiment with the time it takes to generate queries when using non-acc
122122

123123
### Additional Example
124124

125-
```bash
126-
# Query to display the average trip distance
125+
```sql
126+
-- Query to display the average trip distance
127127
SELECT AVG(trip_distance) FROM taxi_trips;
128128
```
129129

0 commit comments

Comments
 (0)