1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00

Just give Tags a type synonym

This commit is contained in:
Timothy Clem 2017-10-04 11:55:26 -07:00
parent c7f4ae005b
commit e5973546a2

View File

@ -52,9 +52,8 @@ data Metric
| Set Double -- Sets count the number of unique elements in a group
| Timer Double -- Timers measure the amount of time a section of code takes to execute.
type Tag = (String, String)
type Tags = [Tag]
-- Tags are just key/value annotations. Values can blank.
type Tags = [(String, String)]
-- Increment a counter.