aboutsummaryrefslogtreecommitdiff
path: root/lib/src/lints/redundant_pattern_bind.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/src/lints/redundant_pattern_bind.rs')
-rw-r--r--lib/src/lints/redundant_pattern_bind.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/src/lints/redundant_pattern_bind.rs b/lib/src/lints/redundant_pattern_bind.rs
index 5b0711f..882a660 100644
--- a/lib/src/lints/redundant_pattern_bind.rs
+++ b/lib/src/lints/redundant_pattern_bind.rs
@@ -17,13 +17,13 @@ use rnix::{
17/// 17///
18/// ## Example 18/// ## Example
19/// 19///
20/// ``` 20/// ```nix
21/// inputs @ { ... }: inputs.nixpkgs 21/// inputs @ { ... }: inputs.nixpkgs
22/// ``` 22/// ```
23/// 23///
24/// Remove the pattern altogether: 24/// Remove the pattern altogether:
25/// 25///
26/// ``` 26/// ```nix
27/// inputs: inputs.nixpkgs 27/// inputs: inputs.nixpkgs
28/// ``` 28/// ```
29#[lint( 29#[lint(