Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix common misspelling in English dictionary #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/testrunner.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ If there is no permutation, the individual test script may be run with:
./testfixture $PATH_TO_SCRIPT
```

Or, if the failure occured as part of a permutation:
Or, if the failure occurred as part of a permutation:

```
./testfixture $TESTDIR/testrunner.tcl $PERMUTATION $PATH_TO_SCRIPT
Expand Down
2 changes: 1 addition & 1 deletion ext/fts5/fts5_test_mi.c
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ static void fts5MatchinfoFunc(
if( rc!=SQLITE_OK ){
sqlite3_result_error_code(pCtx, rc);
}else{
/* No errors has occured, so return a copy of the array of integers. */
/* No errors has occurred, so return a copy of the array of integers. */
int nByte = p->nRet * sizeof(u32);
sqlite3_result_blob(pCtx, (void*)p->aRet, nByte, SQLITE_TRANSIENT);
}
Expand Down
2 changes: 1 addition & 1 deletion ext/lsm1/lsm-test/lsmtest5.c
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ static void mt1Main(ThreadSet *pThreadSet, int iThread, void *pCtx){
}
testClose(&pDb);

/* If an error has occured, set the thread error code and the threadset
/* If an error has occurred, set the thread error code and the threadset
** halt flag to tell the other test threads to halt. Otherwise, set the
** thread error code to 0 and post a message with the number of read
** and write operations completed. */
Expand Down
2 changes: 1 addition & 1 deletion ext/lsm1/lsm_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ int lsm_csr_open(lsm_db *pDb, lsm_cursor **ppCsr){
rc = lsmMCursorNew(pDb, &pCsr);
}

/* If an error has occured, set the output to NULL and delete any partially
/* If an error has occurred, set the output to NULL and delete any partially
** allocated cursor. If this means there are no open cursors, release the
** client snapshot. */
if( rc!=LSM_OK ){
Expand Down
2 changes: 1 addition & 1 deletion ext/lsm1/lsm_shared.c
Original file line number Diff line number Diff line change
Expand Up @@ -1981,7 +1981,7 @@ int lsm_checkpoint(lsm_db *pDb, int *pnKB){
rc = lsmCheckpointWrite(pDb, &nWrite);

/* If required, calculate the output variable (KB of data checkpointed).
** Set it to zero if an error occured. */
** Set it to zero if an error occurred. */
if( pnKB ){
int nKB = 0;
if( rc==LSM_OK && nWrite ){
Expand Down
2 changes: 1 addition & 1 deletion ext/session/sqlite3session.c
Original file line number Diff line number Diff line change
Expand Up @@ -4371,7 +4371,7 @@ static int sessionBindRow(
** iterator pIter points to to the SELECT and attempts to seek to the table
** entry. If a row is found, the SELECT statement left pointing at the row
** and SQLITE_ROW is returned. Otherwise, if no row is found and no error
** has occured, the statement is reset and SQLITE_OK is returned. If an
** has occurred, the statement is reset and SQLITE_OK is returned. If an
** error occurs, the statement is reset and an SQLite error code is returned.
**
** If this function returns SQLITE_ROW, the caller must eventually reset()
Expand Down