diff --git a/mkdocs/apiaux.md b/mkdocs/apiaux.md
index 5f8e6ac..edd6fcc 100644
--- a/mkdocs/apiaux.md
+++ b/mkdocs/apiaux.md
@@ -193,6 +193,7 @@ void onUpload(PageBuilder::UploadFuncT uploadFunc)
Register the upload handler of the AutoConnectAux.
- **Parameters**
+ - TSpecifies a class name of the custom uploader inherited from [AutoConnectUploadHandler](acupload.md#upload-handler-base-class) class. Refer to the [appendix](acupload.md#to-upload-to-a-device-other-than-flash-or-sd) for details.
- handlerSpecifies the custom uploader inherited from [AutoConnectUploadHandler](acupload.md#upload-handler-base-class) class. Refer to the [appendix](acupload.md#to-upload-to-a-device-other-than-flash-or-sd) for details.
- uploadFuncA function that behaves when request to upload with the AutoConnectAux page. UploadFuncT type is defined by the following declaration.
`void(const String&, const HTTPUpload&)`
A data structure of the upload file as HTTPUpload. It is defined in the ESP8266WebServer (the WebServer for ESP32) library as follows: