Skip to content

Commit

Permalink
apply clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
VoltaireNoir committed Oct 30, 2023
1 parent 794bcdb commit d850a0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Expand Up @@ -2,7 +2,7 @@ use anyhow::{bail, Context, Result};
use clap::{Parser, Subcommand, ValueEnum};
use colored::Colorize;
use dirs::home_dir;
use once_cell::unsync::Lazy;
use once_cell::sync::Lazy;
use std::{
collections::HashMap,
fs::OpenOptions,
Expand All @@ -12,8 +12,8 @@ use std::{
};
use tabled::{builder::Builder, settings::Style};

const DB_PATH: Lazy<PathBuf> = Lazy::new(db_path);
const CLIPNAME: &'static str = "markd-temp";
static DB_PATH: Lazy<PathBuf> = Lazy::new(db_path);
const CLIPNAME: &str = "markd-temp";
const ZSH_BASH: &str = r"goto() {
cd $(markd g $1);
}";
Expand Down

0 comments on commit d850a0d

Please sign in to comment.