@@ -100,7 +100,7 @@ declare class Statement {
100
100
getSQL ( ) : string ;
101
101
102
102
/**
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
104
104
* values. It also clears all previous bindings, freeing the memory used
105
105
* by bound parameters.
106
106
* @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 {
115
115
run ( values ?: BindParams ) : void ;
116
116
117
117
/**
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
119
119
* be retrieved with `Statement.get`.
120
120
* @see [https://sql.js.org/documentation/Statement.html#["step"]](https://sql.js.org/documentation/Statement.html#%5B%22step%22%5D)
121
121
*/
@@ -169,7 +169,7 @@ export declare class Database {
169
169
getRowsModified ( ) : number ;
170
170
171
171
/**
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
173
173
* error with a descriptive message otherwise
174
174
* @see [https://sql.js.org/documentation/Database.html#["handleError"]](https://sql.js.org/documentation/Database.html#%5B%22handleError%22%5D)
175
175
*/
0 commit comments