Skip to content

Commit c0c4965

Browse files
authored
Fix typo 👇🏻 (sqlpad#797)
https://github.com/rickbergfalk/sqlpad/blob/master/server/sequelize-db/batches.js#L30: corrected "cancelling" to "canceling" https://github.com/rickbergfalk/sqlpad/blob/master/DEVELOPER-GUIDE.md#L50: corrected "prefered" to "preferred" https://github.com/rickbergfalk/sqlpad/blob/master/CHANGELOG.md#L557: corrected "occassional" to "occasional" https://github.com/rickbergfalk/sqlpad/blob/master/server/routes/signin.js#L8: corrected "correpsonding" to "corresponding" https://github.com/rickbergfalk/sqlpad/blob/master/docs/api-overview.md#L28: corrected "specifing" to "specifying" https://github.com/rickbergfalk/sqlpad/blob/master/docs/api-queries.md#L129: corrected "effeciently" to "efficiently" https://github.com/rickbergfalk/sqlpad/blob/master/docs/authentication.md#L147: corrected "enviornment" to "environment" https://github.com/rickbergfalk/sqlpad/blob/master/docs/configuration.md#L104: corrected "specifing" to "specifying" https://github.com/rickbergfalk/sqlpad/blob/master/docs/getting-started.md#L17: corrected "continously" to "continuously" https://github.com/rickbergfalk/sqlpad/blob/master/client/src/css/vendorOverrides.css#L22: corrected "implementaion" to "implementation" https://github.com/rickbergfalk/sqlpad/blob/master/README.md#L11: corrected "continously" to "continuously" https://github.com/rickbergfalk/sqlpad/blob/master/docs/seed-data.md#L54: corrected "documentaion" to "documentation" https://github.com/rickbergfalk/sqlpad/blob/master/docs/connections.md#L13: corrected "comitting" to "committing"
1 parent 5661996 commit c0c4965

13 files changed

Lines changed: 13 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ Query result grid no longer has data bars for numeric values since it didn't mak
554554
- UI design updates _everywhere_
555555
- Query Listing:
556556
- preview query contents by hovering over query listing
557-
- occassional search/filter weirdness has been fixed
557+
- occasional search/filter weirdness has been fixed
558558
- Query Editor:
559559
- Schema sidebar no longer separates views and tables in hierarchy
560560
- New result grid

DEVELOPER-GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ cd server
4747
node server.js --config ./config.dev.env
4848
```
4949

50-
If prefered, SQLPad can be installed as a global module using the local files in this repo. This allows running SQLPad via the cli in any directory, just as if you had installed it with `npm install sqlpad -g`. Note that you must build and copy the client prior to this step.
50+
If preferred, SQLPad can be installed as a global module using the local files in this repo. This allows running SQLPad via the cli in any directory, just as if you had installed it with `npm install sqlpad -g`. Note that you must build and copy the client prior to this step.
5151

5252
```sh
5353
cd server

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A web app for writing and running SQL queries and visualizing the results. Suppo
88

99
The docker image runs on port 3000 and uses `/var/lib/sqlpad` for the embedded database directory.
1010

11-
`latest` tag is continously built from latest commit in repo. Only use that if you want to live on the edge, otherwise use specific version tags to ensure stability.
11+
`latest` tag is continuously built from latest commit in repo. Only use that if you want to live on the edge, otherwise use specific version tags to ensure stability.
1212

1313
See [docker-examples](https://github.com/rickbergfalk/sqlpad/tree/master/docker-examples) directory for example docker-compose setup with SQL Server.
1414

client/src/css/vendorOverrides.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
transition: all 0.3s ease;
2020
}
2121

22-
/* QueryResultDataTable react-window/react-draggable implementaion */
22+
/* QueryResultDataTable react-window/react-draggable implementation */
2323
.DragHandle {
2424
flex: 0 0 16px;
2525
z-index: 2;

docs/api-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For `400` - `500` status codes, the body returned will be a JSON error object, w
2525

2626
## Example: List Items
2727

28-
List APIs will return an array of objects. The objects in the list may be in summary form specifing only high-level information about the object.
28+
List APIs will return an array of objects. The objects in the list may be in summary form specifying only high-level information about the object.
2929

3030
**200: Body with results**
3131

docs/api-queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Creating, updating, and fetching a single query returns the full query object
126126

127127
## Server Filtering and Pagination
128128

129-
Queries may grow to a large number of entries. Use pagination and filtering to effeciently fetch intended queries.
129+
Queries may grow to a large number of entries. Use pagination and filtering to efficiently fetch intended queries.
130130

131131
### Example
132132

docs/authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ LDAP-based authentication can be enabled and used with local authencation togeth
144144

145145
## Allowed Domains for User Administration
146146

147-
An entire domain can be allowed for username administration by setting enviornment variable `SQLPAD_ALLOWED_DOMAINS`. This may be particularly useful in combination with OAuth.
147+
An entire domain can be allowed for username administration by setting environment variable `SQLPAD_ALLOWED_DOMAINS`. This may be particularly useful in combination with OAuth.
148148

149149
## Service Token
150150

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ If enabled, runs embedded database `nedb` in memory. In this case, the database
101101

102102
## backendDatabaseUri
103103

104-
(Experimental) You can specify an external database to be used instead of the local sqlite database, by specifing a [Sequelize](https://sequelize.org/v5/) connection string. Supported databases are: mysql, mariadb, sqlite3, mssql. Some options can be provided in the connection string. Example: `mariadb://username:password@host:port/databasename?ssl=true`
104+
(Experimental) You can specify an external database to be used instead of the local sqlite database, by specifying a [Sequelize](https://sequelize.org/v5/) connection string. Supported databases are: mysql, mariadb, sqlite3, mssql. Some options can be provided in the connection string. Example: `mariadb://username:password@host:port/databasename?ssl=true`
105105

106106
- Key: `backendDatabaseUri`
107107
- Env: `SQLPAD_BACKEND_DB_URI`

docs/connections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Admins can create connections in the UI, but connections can also be created in
1010

1111
?> Available as of `4.2.0`
1212

13-
Multi-statement transaction support adds the ability for a user to use the same underlying connection across query executions. This allows things like opening a transaction, running queries, and rolling the transaction back or comitting the transaction across query runs. It also opens up the ability to create and use temp tables that are generally scoped per connection session.
13+
Multi-statement transaction support adds the ability for a user to use the same underlying connection across query executions. This allows things like opening a transaction, running queries, and rolling the transaction back or committing the transaction across query runs. It also opens up the ability to create and use temp tables that are generally scoped per connection session.
1414

1515
Multi-statement transaction support is opt-in based on connection configuration. If a connection uses a driver and multi-statement transaction support is not enabled, the connection falls back to the legacy SQLPad behavior of opening a new connection for each query execution, then immediately closing it following the query.
1616

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The docker image runs on port 3000 by default and stores its local database file
1414

1515
SQLPad tries to follow semantic versioning. As an application, this primarily means breaking HTTP API changes, breaking configuration changes, or major UI design changes will result in a major version bump. Minor and patch version bumps will consist of enhancements and fixes.
1616

17-
The `latest` tag on Docker Hub is continously built from latest commit from the `master` branch in GitHub. Do not use it unless you are okay experiencing a work-in-progress. It should be functional, but may not be stable or final.
17+
The `latest` tag on Docker Hub is continuously built from latest commit from the `master` branch in GitHub. Do not use it unless you are okay experiencing a work-in-progress. It should be functional, but may not be stable or final.
1818

1919
## Updating SQLPad
2020

0 commit comments

Comments
 (0)