Skip to content

Commit d928f30

Browse files
authored
Merge pull request elizaOS#1423 from omahs/patch-1
fix: typos
2 parents b7bf1c0 + 7f9563c commit d928f30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/adapter-sqljs/src/types.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ declare class Statement {
100100
getSQL(): string;
101101

102102
/**
103-
* Reset a statement, so that it's parameters can be bound to new
103+
* Reset a statement, so that its parameters can be bound to new
104104
* values. It also clears all previous bindings, freeing the memory used
105105
* by bound parameters.
106106
* @see [https://sql.js.org/documentation/Statement.html#["reset"]](https://sql.js.org/documentation/Statement.html#%5B%22reset%22%5D)
@@ -115,7 +115,7 @@ declare class Statement {
115115
run(values?: BindParams): void;
116116

117117
/**
118-
* Execute the statement, fetching the the next line of result, that can
118+
* Execute the statement, fetching the next line of result, that can
119119
* be retrieved with `Statement.get`.
120120
* @see [https://sql.js.org/documentation/Statement.html#["step"]](https://sql.js.org/documentation/Statement.html#%5B%22step%22%5D)
121121
*/
@@ -169,7 +169,7 @@ export declare class Database {
169169
getRowsModified(): number;
170170

171171
/**
172-
* Analyze a result code, return null if no error occured, and throw an
172+
* Analyze a result code, return null if no error occurred, and throw an
173173
* error with a descriptive message otherwise
174174
* @see [https://sql.js.org/documentation/Database.html#["handleError"]](https://sql.js.org/documentation/Database.html#%5B%22handleError%22%5D)
175175
*/

0 commit comments

Comments
 (0)