summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Wuerthwein <fkw@ucsd.edu>2009-03-12 00:25:12 +0000
committerFrank Wuerthwein <fkw@ucsd.edu>2009-03-12 00:25:12 +0000
commit8672f8a1f7ac099f5af9339714581667bf0b2a0c (patch)
treeed44ca91bccdcf26d75d2577819dfc1f1d3d1010
parente7651cb3e7f9b492529ea6ebf79cc45d9bdb6582 (diff)
Fix comments
-rw-r--r--src/lib/rrdFlotSupport.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/rrdFlotSupport.js b/src/lib/rrdFlotSupport.js
index 69cbf3c..13b5011 100644
--- a/src/lib/rrdFlotSupport.js
+++ b/src/lib/rrdFlotSupport.js
@@ -17,7 +17,7 @@
*/
// Return a Flot-like data structure
-// Since Flot does not properly handle empty elements, main and max are returned, too
+// Since Flot does not properly handle empty elements, min and max are returned, too
function rrdDS2FlotSeries(rrd_file,ds_id,rra_idx,want_label) {
var ds=rrd_file.getDS(ds_id);
var ds_name=ds.getName();
@@ -46,7 +46,7 @@ function rrdDS2FlotSeries(rrd_file,ds_id,rra_idx,want_label) {
}
// return an object with an array containing Flot elements, one per DS
-// mina and max are also returned
+// min and max are also returned
function rrdRRA2FlotObj(rrd_file,rra_idx,ds_list,want_ds_labels) {
var rra=rrd_file.getRRA(rra_idx);
var rra_rows=rra.getNrRows();