Skip to content

Commit 86e3059

Browse files
authored
Fix clippy lints (#861)
* Remove dead docstring The respective function has been removed a while ago. * Elide unused named lifetimes
1 parent 9eb3c2d commit 86e3059

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/completion/history.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub(crate) struct HistoryCompleter<'menu>(&'menu dyn History);
1313

1414
// Safe to implement Send since the HistoryCompleter should only be used when
1515
// updating the menu and that must happen in the same thread
16-
unsafe impl<'menu> Send for HistoryCompleter<'menu> {}
16+
unsafe impl Send for HistoryCompleter<'_> {}
1717

1818
fn search_unique(
1919
completer: &HistoryCompleter,
@@ -30,7 +30,7 @@ fn search_unique(
3030
.filter(move |value| seen_matching_command_lines.insert(value.command_line.clone())))
3131
}
3232

33-
impl<'menu> Completer for HistoryCompleter<'menu> {
33+
impl Completer for HistoryCompleter<'_> {
3434
fn complete(&mut self, line: &str, pos: usize) -> Vec<Suggestion> {
3535
match search_unique(self, line) {
3636
Err(_) => vec![],

src/history/base.rs

-2
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,6 @@ pub trait History: Send {
183183
/// load a history item by its id
184184
fn load(&self, id: HistoryItemId) -> Result<HistoryItem>;
185185

186-
/// retrieves the next unused session id
187-
188186
/// count the results of a query
189187
fn count(&self, query: SearchQuery) -> Result<i64>;
190188
/// return the total number of history items

0 commit comments

Comments
 (0)