Skip to content

Commit d287783

Browse files
authored
misc: Fix typos (#126)
1 parent d35220b commit d287783

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/blueql/1.overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ You are required to parameterize the query like this:
125125
```rust
126126
use skytable::query;
127127

128-
let query = query!("insert into myspace.mymode(?, ?, [?])", "sayan", "pass123", "myfirstnote")
128+
let query = query!("insert into myspace.mymodel(?, ?, [?])", "sayan", "pass123", "myfirstnote")
129129
```
130130

131131
If you try to run it without any parameters (don't forget that `skysh` automatically parameterizes for convenience) the query
@@ -174,7 +174,7 @@ Queries include:
174174
- `INSERT INTO myspace.mymodel(...)`
175175
- `SELECT col1, ... FROM myspace.mymodel WHERE ...`
176176
- `UPDATE myspace.mymodel SET counter += 1 WHERE ...`
177-
- `DELETE FROM myspace.mymode WHERE ...`
177+
- `DELETE FROM myspace.mymodel WHERE ...`
178178

179179
## DCL
180180

docs/blueql/2.ddl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ DROP SPACE [IF EXISTS] [ALLOW NOT EMPTY] <space_name>
101101
- **Access control**: `root` only
102102
- **Operational notes**:
103103
- **A non-empty space cannot be dropped**
104-
To avoid catastrophic `DROP`s, a `SPACE` can only be dropped directly if it is non-empty. To drop a non-empty space, you must
104+
To avoid catastrophic `DROP`s, a `SPACE` can only be dropped directly if it is empty. To drop a non-empty space, you must
105105
run:
106106

107107
```sql

docs/c.architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ several different storage drivers, using ones appropriate for the task. We do no
8686
implement everything in house, engineering them piece by piece.
8787

8888
:::info Features on track
89-
At this point, Skytable is primarily in-memory which means that while it uses disk storage for durability, most data is stored in-memory. **This is going to change in the near future as the team is working on building a custom log-based engine.** As you might understand, this is not an everyday task and as we incorporate new ideas it will take some time. But if you're seeing this in 2023, you can expect us to ship something by Q2 2024.
89+
At this point, Skytable is primarily in-memory which means that while it uses disk storage for durability, most data is stored in-memory. **This is going to change in the near future as the team is working on building a custom log-based engine.** As you might understand, this is not an everyday task and as we incorporate new ideas it will take some time. But if you're seeing this in 2024, you can expect us to ship something by early 2025.
9090
:::
9191

9292
DDL and DCL transactions use a log-based append-only driver while DML queries use a custom log-based append-only driver that is able to intelligently handle concurrent changes. The team will implement new and updated storage drivers from time to time but you do not have to worry about anything, due to our promise for backwards compatibility (see below).

0 commit comments

Comments
 (0)