docs: add warning icon for extractor order (#2027)

This commit is contained in:
Azzam S.A
2023-07-17 09:38:08 +02:00
committed by David Pedersen
parent 057e099f4c
commit dc8491b11b
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ use std::{
/// Extractor that parses `multipart/form-data` requests (commonly used with file uploads).
///
/// Since extracting multipart form data from the request requires consuming the body, the
/// ⚠️ Since extracting multipart form data from the request requires consuming the body, the
/// `Multipart` extractor must be *last* if there are multiple extractors in a handler.
/// See ["the order of extractors"][order-of-extractors]
///