From 132441de5fb42e5a87cf3b93168a75b0d287f213 Mon Sep 17 00:00:00 2001 From: Antonios Barotsis Date: Fri, 5 Jul 2024 14:29:02 +0300 Subject: [PATCH] fix old module name docstring --- src/rate_limit.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rate_limit.rs b/src/rate_limit.rs index 5c1a324..c6f9d1c 100644 --- a/src/rate_limit.rs +++ b/src/rate_limit.rs @@ -38,7 +38,7 @@ impl Default for RetryOptions { /// /// ```rust /// use resend_rs::{ -/// retry::{send_with_retry, send_with_retry_opts, RetryOptions}, +/// rate_limit::{send_with_retry, send_with_retry_opts, RetryOptions}, /// types::CreateEmailBaseOptions, ///}; ///use resend_rs::{Resend, Result}; @@ -59,7 +59,7 @@ impl Default for RetryOptions { /// /// ```rust /// use resend_rs::{ -/// retry::{send_with_retry, send_with_retry_opts, RetryOptions}, +/// rate_limit::{send_with_retry, send_with_retry_opts, RetryOptions}, /// types::CreateEmailBaseOptions, ///}; ///use resend_rs::{Resend, Result};