From a027440d9818e0cc0802f06b344094dba4e3d355 Mon Sep 17 00:00:00 2001 From: Kevin Kwa Date: Sun, 13 Dec 2015 19:55:53 +0800 Subject: [PATCH] Constants: Update IA description --- lib/DDG/Goodie/Constants.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/DDG/Goodie/Constants.pm b/lib/DDG/Goodie/Constants.pm index 7a42d37cb..8825614f4 100644 --- a/lib/DDG/Goodie/Constants.pm +++ b/lib/DDG/Goodie/Constants.pm @@ -7,23 +7,23 @@ zci answer_type => "constants"; zci is_cached => 1; name "Constants"; -description "Succinct explanation of what this instant answer does"; +description "Provides the value, unit, symbol and other information for Mathematical and Scientific constants"; primary_example_queries "first example query", "second example query"; secondary_example_queries "optional -- demonstrate any additional triggers"; category "formulas"; topics "math"; code_url "https://github.com/duckduckgo/zeroclickinfo-goodies/blob/master/lib/DDG/Goodie/Constants.pm"; -attribution github => ["Roysten", "Roy van der Vegt"], +attribution github => ["Roysten", "Roy van der Vegt"], github => ["hemanth", "Hemanth.HM"], twitter => "gnumanth"; - + my $constants = LoadFile(share("constants.yml")); #loop through constants foreach my $name (keys %$constants) { #obtain to constant with name $keyword my $constant = $constants->{$name}; - + #add aliases as separate triggers foreach my $alias (@{$constant->{'aliases'}}) { $constants->{$alias} = $constant; @@ -37,7 +37,7 @@ triggers startend => @triggers; handle query_lc => sub { my $constant = $constants->{$_}; return unless my $val = $constant->{'value'}; - + #fallback to plain answer if html is not present my $result = $val->{'html'} ? $val->{'html'} : $val->{'plain'};