Elijah Insua be67514557 move the 'in' unit conversion keyword to 'to'
This also enables 'in' as an alias of 'inch'.  refs #120
2013-12-20 15:31:18 -07:00

16 lines
261 B
JavaScript

module.exports = {
'name': 'to',
'category': 'Units',
'syntax': [
'x to unit',
'to(x, unit)'
],
'description': 'Change the unit of a value.',
'examples': [
'5 inch in cm',
'3.2kg in g',
'16 bytes in bits'
],
'seealso': []
};