rewrote documentation for functions and expressions

This commit is contained in:
Francesco Cozzuto
2023-01-18 01:20:25 +01:00
parent 78fadb2a6a
commit 6539446b69
4 changed files with 32 additions and 34 deletions
+2 -2
View File
@@ -49,9 +49,9 @@ fun new() {
router.table[name] = methods;
fun getRouteAllowedMethods(route) {
fun getRouteAllowedMethods(router: Router, route) {
method_table = route_table[route];
method_table = router.table[route];
if method_table == none:
return none;