Thomas Davis 12 лет назад
Родитель
Сommit
7ba454f8c0
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      include/civetweb.h

+ 2 - 2
include/civetweb.h

@@ -171,11 +171,11 @@ void mg_stop(struct mg_context *);
 // mg_request_handler
 //
 // Called when a new request comes in.  This callback is URI based
-// and configured with mg_sethandler().
+// and configured with mg_set_request_handler().
 //
 // Parameters:
 //    conn: current connection information.
-//    cbdata: the callback data configured with mg_sethandler().
+//    cbdata: the callback data configured with mg_set_request_handler().
 // Returns:
 //    0: the handler could not handle the request, so fall through.
 //    1: the handler processed the request.