Skip to content
Snippets Groups Projects
Verified Commit 5cff7993 authored by Vincent Lafeychine's avatar Vincent Lafeychine
Browse files

clippy: Fix redundant_static_lifetimes

parent 88e9f21c
No related branches found
No related tags found
1 merge request!43Fix remaining `clippy::style`
......@@ -81,7 +81,6 @@ rustflags = [
# clippy::style
"-Aclippy::new_without_default",
"-Aclippy::redundant_static_lifetimes",
"-Aclippy::single_char_add_str",
"-Aclippy::single_component_path_imports",
"-Aclippy::single_match",
......
......@@ -11,7 +11,7 @@ use indent_write::fmt::IndentWriter;
use crate::write_list;
pub(crate) const BASE_INDENT: &'static str = " ";
pub(crate) const BASE_INDENT: &str = " ";
/// Represents a Coq path of the form
/// `From A.B.C Import D`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment