Merge pull request #392 from colajam93/fix-typo

Fix typo
This commit is contained in:
facetoe 2016-06-04 00:52:26 +08:00
commit 07cbb84406
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ class GPUMemory(IntervalModule):
("warn_percentage", "minimal percentage for warn state"), ("warn_percentage", "minimal percentage for warn state"),
("alert_percentage", "minimal percentage for alert state"), ("alert_percentage", "minimal percentage for alert state"),
("color", "standard color"), ("color", "standard color"),
("warn_color", "defines the color used wann warn percentage ist exceeded"), ("warn_color", "defines the color used when warn percentage is exceeded"),
("alert_color", "defines the color used when alert percentage is exceeded"), ("alert_color", "defines the color used when alert percentage is exceeded"),
("round_size", "defines number of digits in round"), ("round_size", "defines number of digits in round"),

View File

@ -34,7 +34,7 @@ class Mem(IntervalModule):
("alert_percentage", "minimal percentage for alert state"), ("alert_percentage", "minimal percentage for alert state"),
("color", "standard color"), ("color", "standard color"),
("warn_color", ("warn_color",
"defines the color used wann warn percentage ist exceeded"), "defines the color used when warn percentage is exceeded"),
("alert_color", ("alert_color",
"defines the color used when alert percentage is exceeded"), "defines the color used when alert percentage is exceeded"),
("round_size", "defines number of digits in round"), ("round_size", "defines number of digits in round"),

View File

@ -32,7 +32,7 @@ class MemBar(IntervalModule, ColorRangeModule):
("alert_percentage", "minimal percentage for alert state"), ("alert_percentage", "minimal percentage for alert state"),
("color", "standard color"), ("color", "standard color"),
("warn_color", ("warn_color",
"defines the color used wann warn percentage ist exceeded"), "defines the color used when warn percentage is exceeded"),
("alert_color", ("alert_color",
"defines the color used when alert percentage is exceeded"), "defines the color used when alert percentage is exceeded"),
("multi_colors", "whether to use range of colors from 'color' to 'alert_color' based on memory usage."), ("multi_colors", "whether to use range of colors from 'color' to 'alert_color' based on memory usage."),