You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lapis' default error page displays a full stack trace. Therefore, it is
1402
1402
recommended to replace it with a custom one in your production environments and
1403
-
log the exception in the background to prevent leaking file pathes and function
1403
+
log the exception in the background to prevent leaking file paths and function
1404
1404
names related to your application.
1405
1405
1406
1406
The [`lapis-exceptions`][2] module augments the error handler to records errors
@@ -1493,7 +1493,7 @@ either an application class or an instance. If there are any before filters in
1493
1493
`other_app`, every action of `other_app` will be be wrapped in a new function
1494
1494
that calls those before filters before calling the original function.
1495
1495
1496
-
Options can either be provided in the arugment`opts`, or will be pulled from
1496
+
Options can either be provided in the argument`opts`, or will be pulled from
1497
1497
`other_app`, with precedence going to the value provided in `opts` if provided.
1498
1498
1499
1499
Note that application instance configuration like `layout` and `views_prefix`
@@ -1502,7 +1502,7 @@ are not kept from the included application.
1502
1502
$options_table{
1503
1503
{
1504
1504
name = "path",
1505
-
description = "If provided, every path copied over will be prefixed with the value of this option. It should start with a `/` and a trailing slash should be inlcuded if desired."
1505
+
description = "If provided, every path copied over will be prefixed with the value of this option. It should start with a `/` and a trailing slash should be included if desired."
1506
1506
},
1507
1507
{
1508
1508
name = "name",
@@ -1525,7 +1525,7 @@ Returns `nil` if no action could be found.
1525
1525
1526
1526
Creates a subclass of the Application class. This method is only available on
1527
1527
the class object, not the instance. Instance fields can be provided as via the
1528
-
`fields`arugment or by mutating the returned metatable object.
1528
+
`fields`argument or by mutating the returned metatable object.
1529
1529
1530
1530
This method returns the newly created class object, and the metatable for any
0 commit comments