From f5a82e00aacc45a23ad14fc79b21b56cd151219e Mon Sep 17 00:00:00 2001 From: Jag Talon Date: Thu, 12 Dec 2013 13:08:20 -0500 Subject: [PATCH] Latex: Remove redundant trigger word. It's redundant because the trigger words are not case-sensitive. So "latex" would also trigger on the query "LATEX". --- lib/DDG/Goodie/Latex.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DDG/Goodie/Latex.pm b/lib/DDG/Goodie/Latex.pm index cb05c1283..92c15d2ab 100644 --- a/lib/DDG/Goodie/Latex.pm +++ b/lib/DDG/Goodie/Latex.pm @@ -3,7 +3,7 @@ package DDG::Goodie::Latex; use DDG::Goodie; -triggers startend => 'latex', 'Latex', 'tex'; +triggers startend => 'latex', 'tex'; primary_example_queries 'latex summation'; description 'Show the Latex command for a keyword'; category 'cheat_sheets';