Skip to content

Commit 6e44d18

Browse files
committed
improve sentence to make it clearer
1 parent 613ee98 commit 6e44d18

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

working-with-controllers/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Fano Framework provides `TAbstractController`, `TController`,
4848
`TMethodRequestHandler` and `TFuncRequestHandler` class. They implement `IRequestHandler` interface.
4949

5050
### TAbstractController
51-
[`TAbstractController` is an abstract class](https://github.com/fanoframework/fano/blob/master/src/Mvc/Controllers/AbstractControllerImpl.pas). You need to derive and implements its `handleRequest()` method to be able to use it.
51+
`TAbstractController` is an abstract class. You need to derive and implements its `handleRequest()` method to be able to use it. [View TAbstractController source code](https://github.com/fanoframework/fano/blob/master/src/Mvc/Controllers/AbstractControllerImpl.pas).
5252

5353
```
5454
unit MyController;
@@ -90,15 +90,15 @@ implementation
9090
end.
9191
```
9292
### TController
93-
[`TController` is concrete class](https://github.com/fanoframework/fano/blob/master/src/Mvc/Controllers/ControllerImpl.pas). It extends `TAbstractController` capability by adding view and view parameters to allow, for example, to use template.
93+
`TController` is concrete class. It extends `TAbstractController` capability by adding view and view parameters to allow, for example, to use template. [View TController source code](https://github.com/fanoframework/fano/blob/master/src/Mvc/Controllers/ControllerImpl.pas)
9494

9595
### TMethodRequestHandler
9696

97-
[`TMethodRequestHandler` is concrete class](https://github.com/fanoframework/fano/blob/master/src/Dispatcher/MethodRequestHandlerImpl.pas). It allows [use of any class method as request handler](#method-function-as-request-handler) as long as it matches [`THandlerMethod`](https://github.com/fanoframework/fano/blob/master/src/Dispatcher/Contracts/HandlerTypes.pas).
97+
`TMethodRequestHandler` is concrete class. It allows [use of any class method as request handler](#method-function-as-request-handler) as long as it matches [`THandlerMethod`](https://github.com/fanoframework/fano/blob/master/src/Dispatcher/Contracts/HandlerTypes.pas). [View TMethodRequestHandler source code](https://github.com/fanoframework/fano/blob/master/src/Dispatcher/MethodRequestHandlerImpl.pas).
9898

9999
### TFuncRequestHandler
100100

101-
[`TFuncRequestHandler` is concrete class](https://github.com/fanoframework/fano/blob/master/src/Dispatcher/FuncRequestHandlerImpl.pas). It allows [use of Pascal function as request handler](#method-function-as-request-handler) as long as it matches [`THandlerFunc`](https://github.com/fanoframework/fano/blob/master/src/Dispatcher/Contracts/HandlerTypes.pas).
101+
`TFuncRequestHandler` is concrete class. It allows [use of Pascal function as request handler](#method-function-as-request-handler) as long as it matches [`THandlerFunc`](https://github.com/fanoframework/fano/blob/master/src/Dispatcher/Contracts/HandlerTypes.pas). [View TFuncRequestHandler source code](https://github.com/fanoframework/fano/blob/master/src/Dispatcher/FuncRequestHandlerImpl.pas).
102102

103103

104104
## Using TController class

0 commit comments

Comments
 (0)