Skip to content

Commit 1100817

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents f2f6668 + 7ca84ec commit 1100817

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

database/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ db := TSQLiteDb.create();
6767
db.connect('', 'your_data.db', '', '', 0);
6868
```
6969

70-
It will open database connection which is stored in `your_data.db` file.
70+
It will open database which is stored in `your_data.db` file.
7171

7272
### ODBC
7373

@@ -257,4 +257,4 @@ You may find thing does not work due to missing library for example you [do not
257257
- [TPostgreSqlDb class](https://github.com/fanoframework/fano/blob/master/src/Db/Rdbms/Implementations/PostgreSql/PostgreSqlDbImpl.pas).
258258
- [TFirebirdDb class](https://github.com/fanoframework/fano/blob/master/src/Db/Rdbms/Implementations/Firebird/FirebirdDbImpl.pas).
259259
- [TOdbcDb ckass](https://github.com/fanoframework/fano/blob/master/src/Db/Rdbms/Implementations/Odbc/OdbcDbImpl.pas).
260-
- [TSQLiteDb class](https://github.com/fanoframework/fano/blob/master/src/Db/Rdbms/Implementations/SQLite/SQLiteDbImpl.pas).
260+
- [TSQLiteDb class](https://github.com/fanoframework/fano/blob/master/src/Db/Rdbms/Implementations/SQLite/SQLiteDbImpl.pas).

utilities/rate-limit/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ container.add(
109109
);
110110
```
111111

112-
If you need to use different ways to identify request, for example using unique key passed as query string or POST parameter, ypu can create a class which implements `IRequestIdentifier` interface and implement its `getId()` method. For example
112+
If you need to use different ways to identify request, for example using unique key passed as query string or POST parameter, you can create a class which implements `IRequestIdentifier` interface and implement its `getId()` method. For example
113113

114114
```
115115
unit MyRequestIdentifierImpl;
@@ -292,4 +292,4 @@ Rate-limiting video tutorial explains how to use rate limit middleware to restri
292292
- [TThrottleMiddleware source](https://github.com/fanoframework/fano/blob/master/src/Libs/Throttle/Implementations/ThrottleMiddlewareImpl.pas)
293293
- [TThrottleMiddlewareFactory source](https://github.com/fanoframework/fano/blob/master/src/Libs/Throttle/Implementations/Factories/ThrottleMiddlewareFactoryImpl.pas)
294294
- [Rate-limiting demo application](https://github.com/fanoframework/fano-rate-limiting)
295-
- [Rate-limiting demo application with MySQL as storage](https://github.com/fanoframework/fano-rate-limiting-db).
295+
- [Rate-limiting demo application with MySQL as storage](https://github.com/fanoframework/fano-rate-limiting-db).

0 commit comments

Comments
 (0)