Skip to content

Commit 3db2bef

Browse files
unparalleledstamhankar999
authored andcommitted
Fixed a typo in the 'features' README (#233)
1 parent 2373515 commit 3db2bef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ statement = session.prepare('INSERT INTO users (username, email) VALUES (?, ?)')
8080
session.execute(statement, arguments: ['avalanche123', '[email protected]'])
8181
```
8282

83-
You should prepare a statement for a given query **only** once and then resue it by calling #execute. Re-preparing the same statement will have a negative impact on the performance and should be avoided.
83+
You should prepare a statement for a given query **only** once and then reuse it by calling #execute. Re-preparing the same statement will have a negative impact on the performance and should be avoided.
8484

8585
A prepared statement can be run many times, but the CQL parsing will only be done once on each node. Use prepared statements for queries you run over and over again.
8686

0 commit comments

Comments
 (0)