Skip to content

Commit ff7ca2d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents f576a1a + 06732f2 commit ff7ca2d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

middlewares/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ authOnly := TAuthOnlyMiddleware.create();
224224

225225
## <a name="attaching-middleware-to-application-middleware"></a>Attaching middleware to application middleware
226226

227-
When you use initialize `IDispatcher` implementation which support middlewares, such as `TDispatcher` class, you are required to setup one global `IMiddlewareLinkList` instances which stores list of middlewares applied globally to all routes. Read [Dispatcher](/dispatcher) for more information.
227+
When you use `IDispatcher` implementation which support middlewares, such as `TDispatcher` class, you are required to setup one global `IMiddlewareLinkList` instances which stores list of middlewares applied globally to all routes. Read [Dispatcher](/dispatcher) for more information.
228228

229229
As shown in following code
230230

utilities/helper-functions/index.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ description: Tutorial on how to use helper functions provided by Fano Framework
88
## About Helper function
99

1010
![Helper illustration](/assets/images/helping-hand.jpg){:class="image fit"}
11-
12-
Photo by [Austin Kehmeier](https://unsplash.com/@a_kehmeier?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on [Unsplash](https://unsplash.com/s/photos/helping-hand?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText)
11+
(Photo by [Austin Kehmeier](https://unsplash.com/@a_kehmeier?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on [Unsplash](https://unsplash.com/s/photos/helping-hand?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText))
1312

1413
Fano Framework provides helper functions to simplify common tasks such as [generate slug string](#generate-slug-string), [join string with delimiter](#join-string) or [read file content](#read-file-content).
1514

1615
All helpers functions are declared in `fano.pas` unit.
1716

18-
## <a name="generate-slug-string"></a>Read file content to string
17+
## <a name="read-file-content"></a>Read file content to string
1918

2019
`readFile()` reads file content and output it as string. It accepts one parameter file path of filename to load.
2120

@@ -87,4 +86,4 @@ slugStr := slug('hello good @##@$$@$people']);
8786

8887
## Explore more
8988

90-
- [Regular expression](/utilities/regular-expression)
89+
- [Regular expression](/utilities/regular-expression)

0 commit comments

Comments
 (0)