From 6c91549e3311bd1831a4c0dd8c004b00ede4360e Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Mon, 24 Jul 2023 12:33:29 +0200 Subject: [PATCH] Fix typo in error message --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f7c8519..934b668 100644 --- a/src/main.rs +++ b/src/main.rs @@ -62,7 +62,7 @@ fn main() -> ExitCode { let args = Opt::parse(); if args.update { - eprintln!("\"comma --update\" has been deprecated. either obtain a prebuilt databse from https://github.com/Mic92/nix-index-database or use \"nix run 'nixpkgs#nix-index' --extra-experimental-features 'nix-command flakes'\""); + eprintln!("\"comma --update\" has been deprecated. either obtain a prebuilt database from https://github.com/Mic92/nix-index-database or use \"nix run 'nixpkgs#nix-index' --extra-experimental-features 'nix-command flakes'\""); index::update_database(); }