We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae1af08 commit ae06c25Copy full SHA for ae06c25
src/popups/conventional_commit.rs
@@ -152,9 +152,9 @@ enum MoreInfoCommit {
152
153
impl MoreInfoCommit {
154
const fn strings(
155
- &self,
+ self,
156
) -> (&'static str, &'static str, &'static str) {
157
- match *self {
+ match self {
158
Self::UI => ("💄", "UI", "UI related"),
159
Self::CodeStyle => ("🎨", "style", "Style of the code"),
160
Self::Performance => ("⚡️", "", "Performance"),
0 commit comments