remove a name

This commit is contained in:
Abraham Toriz 2021-07-13 09:11:29 -05:00
parent c3e96a8096
commit bcdad1e138
No known key found for this signature in database
GPG Key ID: D5B4A746DB5DD42A
1 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ pub enum WeekDay {
#[derive(Debug, Serialize, Deserialize)]
pub struct Config {
/// Absolute path to the sqlite database
pub database_file: PathBuf, // "/home/abraham/.timetrap.db"
pub database_file: PathBuf, // "/home/user/.timetrap.db"
/// The duration of time to use for rounding with the -r flag
pub round_in_seconds: u32, // 900
@ -32,7 +32,7 @@ pub struct Config {
pub append_notes_delimiter: String, //" "
/// an array of directories to search for user defined fomatter classes
pub formatter_search_paths: Vec<PathBuf>, //- "/home/abraham/.timetrap/formatters"
pub formatter_search_paths: Vec<PathBuf>, //- "/home/user/.timetrap/formatters"
/// The format to use when display is invoked without a --format option
pub default_formatter: Formatter, //text
@ -41,7 +41,7 @@ pub struct Config {
pub auto_sheet: String, //dotfiles
/// an array of directories to search for user defined auto_sheet classes
pub auto_sheet_search_paths: Vec<PathBuf>, // - "/home/abraham/.timetrap/auto_sheets"
pub auto_sheet_search_paths: Vec<PathBuf>, // - "/home/user/.timetrap/auto_sheets"
/// The default command to invoke when you call t
pub default_command: Option<String>,