Skip to content

Commit e8d47c2

Browse files
committed
feat: v3.0.2
1 parent f258607 commit e8d47c2

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "udp"
3-
version = "3.0.1"
3+
version = "3.0.2"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

src/config/impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ impl ServerConfigData {
278278
///
279279
/// # Arguments
280280
///
281-
/// - `impl AsRef<str>` - The host address to set.
281+
/// - `AsRef<str>` - The host address to set.
282282
pub fn set_host<H>(&mut self, host: H)
283283
where
284284
H: AsRef<str>,

src/context/impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ impl Context {
393393
///
394394
/// # Arguments
395395
///
396-
/// - `impl Into<ResponseData>` - The response data.
396+
/// - `Into<ResponseData>` - The response data.
397397
///
398398
/// # Returns
399399
///

src/panic/impl.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ impl PanicData {
2222
///
2323
/// # Arguments
2424
///
25-
/// - `impl AsRef<str>` - The panic message.
25+
/// - `AsRef<str>` - The panic message.
2626
///
2727
/// # Returns
2828
///
@@ -75,7 +75,7 @@ impl PanicData {
7575
///
7676
/// # Arguments
7777
///
78-
/// - `impl AsRef<str>` - The location string (file:line).
78+
/// - `AsRef<str>` - The location string (file:line).
7979
pub fn set_location<L>(&mut self, location: L)
8080
where
8181
L: AsRef<str>,

src/response/impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl Response {
1919
///
2020
/// # Arguments
2121
///
22-
/// - `impl Into<ResponseData>` - Data convertible to ResponseData.
22+
/// - `Into<ResponseData>` - Data convertible to ResponseData.
2323
///
2424
/// # Returns
2525
///

0 commit comments

Comments
 (0)