1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 15:14:08 +00:00

fix comments

This commit is contained in:
Rene Schallner 2023-05-19 03:07:56 +02:00
parent d656452667
commit 6f7e2f89fb

View file

@ -88,7 +88,7 @@ const UserMiddleWare = struct {
}
};
// Example session middleware: puts user info into the context
// Example session middleware: puts session info into the context
const SessionMiddleWare = struct {
handler: Handler,
@ -130,7 +130,7 @@ const SessionMiddleWare = struct {
}
};
// Example html middleware: handles the request
// Example html middleware: handles the request and sends a response
const HtmlMiddleWare = struct {
handler: Handler,