Skip to content

Commit 50147c7

Browse files
committed
feat: v1.13.11
1 parent 27c0d4d commit 50147c7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.toml

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

src/cfg/struct.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ use crate::{func::*, visibility::*};
66
/// whether to skip processing (`skip`), and the visibility of the function (`Visibility`).
77
///
88
/// # Fields
9-
/// - `func_type`: A `FuncType` that specifies the function type (e.g., `Get`, `Set`, or `Unknown`).
9+
/// - `func_type`: A `FuncType` that specifies the function type.
1010
/// - `skip`: A boolean flag indicating whether the function should be skipped during processing.
11-
/// - `visibility`: A `Visibility` that defines the visibility of the function (e.g., `Public`, `Private`).
11+
/// - `visibility`: A `Visibility` that defines the visibility of the function.
1212
#[derive(Debug, Clone, PartialEq, Eq)]
1313
pub struct Cfg {
14-
/// A `FuncType` that specifies the function type (e.g., `Get`, `Set`, or `Unknown`).
14+
/// A `FuncType` that specifies the function type.
1515
pub(crate) func_type: FuncType,
1616
/// A boolean flag indicating whether the function should be skipped during processing.
1717
pub(crate) skip: bool,
18-
/// A `Visibility` that defines the visibility of the function (e.g., `Public`, `Private`).
18+
/// A `Visibility` that defines the visibility of the function.
1919
pub(crate) visibility: Visibility,
2020
}

0 commit comments

Comments
 (0)