Skip to content

Commit 8d6f791

Browse files
authored
[DO] Fix typo (#19567)
1 parent 53221b8 commit 8d6f791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/durable-objects/get-started/tutorial-with-sql-api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export class MyDurableObject extends DurableObject {
138138
In the code above, you have:
139139

140140
1. Defined a RPC method, `sayHello()`, that can be called by a Worker to communicate with a Durable Object.
141-
2. Accessed a Durable Object's attached storage, which is a private SQLite database only accesible to the object, using [SQL API](/durable-objects/api/sql-storage/#exec) methods (`sql.exec()`) available on `ctx.storage` .
141+
2. Accessed a Durable Object's attached storage, which is a private SQLite database only accessible to the object, using [SQL API](/durable-objects/api/sql-storage/#exec) methods (`sql.exec()`) available on `ctx.storage` .
142142
3. Returned an object representing the single row query result using `one()`, which checks that the query result has exactly one row.
143143
4. Return the `greeting` column from the row object result.
144144

0 commit comments

Comments
 (0)