Skip to content

Commit 28ef8b4

Browse files
committed
Comments.
1 parent d7e085d commit 28ef8b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/protocols/protocol_html.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,25 +62,25 @@ void protocol_html::handle_receive_get(const code& ec,
6262
return;
6363
}
6464

65-
// Always try object dispatch, false if unhandled.
65+
// Always try API dispatch, false if unhandled.
6666
if (try_dispatch_object(*request))
6767
return;
6868

69-
// Otherwise require file dispatch if path is configured (always handles).
69+
// Require file system dispatch if path is configured (always handles).
7070
if (!options_.path.empty())
7171
{
7272
dispatch_file(*request);
7373
return;
7474
}
7575

76-
// Dispatch from embedded site if site is configured. (always handles).
76+
// Require embedded dispatch if site is configured (always handles).
7777
if (options_.pages.enabled())
7878
{
7979
dispatch_embedded(*request);
8080
return;
8181
}
8282

83-
// Neither site is enabled and object dispatch doesn't support accept type.
83+
// Neither site is enabled and object dispatch doesn't support.
8484
send_not_implemented(*request);
8585
}
8686

0 commit comments

Comments
 (0)