diff --git a/src/account.rs b/src/account.rs index 456c3d08..8fe22726 100644 --- a/src/account.rs +++ b/src/account.rs @@ -272,7 +272,8 @@ pub struct CertificateRevocation<'a> { impl CertificateRevocation<'_> { /// Create the revocation request using the specified nonce for the given directory. pub fn request(&self, directory: &Directory, nonce: &str) -> Result { - self.account.post_request(&directory.data.revoke_cert, nonce, &self.data) + self.account + .post_request(&directory.data.revoke_cert, nonce, &self.data) } } diff --git a/src/authorization.rs b/src/authorization.rs index 0fe5194e..fee3614d 100644 --- a/src/authorization.rs +++ b/src/authorization.rs @@ -138,7 +138,6 @@ fn is_false(b: &bool) -> bool { /// This is created via [`Account::get_authorization`](crate::Account::get_authorization()). pub struct GetAuthorization { //order: OrderData, - /// The request to send to the ACME provider. This is wrapped in an option in order to allow /// moving it out instead of copying the contents. /// diff --git a/src/order.rs b/src/order.rs index 53ac6884..def5a380 100644 --- a/src/order.rs +++ b/src/order.rs @@ -155,7 +155,6 @@ impl Order { /// This is created via [`Account::new_order`](crate::Account::new_order()). pub struct NewOrder { //order: OrderData, - /// The request to execute to place the order. When creating a [`NewOrder`] via /// [`Account::new_order`](crate::Account::new_order) this is guaranteed to be `Some`. pub request: Option,