File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments