max / makenotwork
1 file changed,
+3 insertions,
-1 deletion
| @@ -7,6 +7,8 @@ | |||
| 7 | 7 | //! presigned URL generation, and bucket management. Used by MNW and | |
| 8 | 8 | //! Multithreaded to avoid duplicating S3 initialization and operations. | |
| 9 | 9 | ||
| 10 | + | #![warn(missing_docs)] | |
| 11 | + | ||
| 10 | 12 | use aws_config::BehaviorVersion; | |
| 11 | 13 | use aws_sdk_s3::Client; | |
| 12 | 14 | use aws_sdk_s3::config::{Credentials, Region}; | |
| @@ -642,7 +644,7 @@ | |||
| 642 | 644 | /// | |
| 643 | 645 | /// The abort lives in exactly ONE place: once the multipart upload has been | |
| 644 | 646 | /// created, all the fallible part/complete work runs in | |
| 645 | - | /// [`Self::run_multipart_upload`], and this wrapper aborts on any `Err` it | |
| 647 | + | /// the private `run_multipart_upload`, and this wrapper aborts on any `Err` it | |
| 646 | 648 | /// returns. So a future failure path added inside the inner method aborts by | |
| 647 | 649 | /// construction — it cannot forget to (the Sto-S1 fix, made structural rather | |
| 648 | 650 | /// than per-branch). |