Skip to content

Commit 0b750c2

Browse files
committed
fix linter error
1 parent edc9984 commit 0b750c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,12 +174,12 @@ impl BrowserOptions {
174174
Self::default()
175175
}
176176

177-
pub fn with_suppress_output<'a>(&'a mut self, suppress_output: bool) -> &'a mut Self {
177+
pub fn with_suppress_output(&mut self, suppress_output: bool) -> &mut Self {
178178
self.suppress_output = suppress_output;
179179
self
180180
}
181181

182-
pub fn with_target_hint<'a>(&'a mut self, target_hint: &str) -> &'a mut Self {
182+
pub fn with_target_hint(&mut self, target_hint: &str) -> &mut Self {
183183
self.target_hint = target_hint.to_owned();
184184
self
185185
}

0 commit comments

Comments
 (0)