Applied review suggestion of changing the operations to title case

master
zblair 2015-01-08 07:13:34 +00:00
parent e3fdf0b591
commit 43dc5040b1
1 changed files with 2 additions and 2 deletions

View File

@ -44,14 +44,14 @@ handle query_lc => sub {
if ($is_mass_query) {
return "$element_name ($element_symbol), Atomic mass $atomic_mass u", structured_answer => {
input => ["$element_name ($element_symbol)"],
operation => 'atomic mass',
operation => 'Atomic Mass',
result => "$atomic_mass u"
};
}
else {
return "$element_name ($element_symbol), Atomic number $atomic_number", structured_answer => {
input => ["$element_name ($element_symbol)"],
operation => 'atomic number',
operation => 'Atomic Number',
result => $atomic_number
};
}