gemhome / fnordmetric

(possible new home for) FnordMetric is a redis/ruby-based realtime Event-Tracking app
0 stars 1 forks source link

Typo in documentation #66

Open bf4 opened 10 years ago

bf4 commented 10 years ago

Issue by JangoSteve Sunday Aug 18, 2013 at 20:14 GMT Originally opened as https://github.com/paulasmuth/fnordmetric/issues/159


Example for "Three Dimensional Gauges" (on this page) has a typo:

gauge :clicks_per_category,
  :three_dimensional => true

event :click do
  incr_field :three_dimensional, 'fashion', 1
end

The event :click should be:

 incr_field :clicks_per_category, 'fashion', 1
bf4 commented 10 years ago

Comment by JangoSteve Sunday Aug 18, 2013 at 20:15 GMT


BTW, I'll submit a pull request for this, but I'm not on my coding computer, so just creating this issue for now to remind myself.