summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/statsd.nix
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2014-12-30 03:31:03 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2014-12-30 03:31:03 +0100
commitc64257b8e5d36bb71e4e773b9373e35b9b9b0e1c (patch)
treef019e4158fabd12f216c5d3ad7afbe30e264f223 /nixos/modules/services/monitoring/statsd.nix
parente62e634128275509d3818d4cbf11bfa64e9f51af (diff)
downloadnixlib-c64257b8e5d36bb71e4e773b9373e35b9b9b0e1c.tar
nixlib-c64257b8e5d36bb71e4e773b9373e35b9b9b0e1c.tar.gz
nixlib-c64257b8e5d36bb71e4e773b9373e35b9b9b0e1c.tar.bz2
nixlib-c64257b8e5d36bb71e4e773b9373e35b9b9b0e1c.tar.lz
nixlib-c64257b8e5d36bb71e4e773b9373e35b9b9b0e1c.tar.xz
nixlib-c64257b8e5d36bb71e4e773b9373e35b9b9b0e1c.tar.zst
nixlib-c64257b8e5d36bb71e4e773b9373e35b9b9b0e1c.zip
Fix user-facing typos (mainly in descriptions)
Diffstat (limited to 'nixos/modules/services/monitoring/statsd.nix')
-rw-r--r--nixos/modules/services/monitoring/statsd.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/monitoring/statsd.nix b/nixos/modules/services/monitoring/statsd.nix
index 942ce72f6a36..7d7ca27bb2f0 100644
--- a/nixos/modules/services/monitoring/statsd.nix
+++ b/nixos/modules/services/monitoring/statsd.nix
@@ -53,7 +53,7 @@ in
     };
 
     mgmt_address = mkOption {
-      description = "Address to run managment TCP interface on";
+      description = "Address to run management TCP interface on";
       default = "127.0.0.1";
       type = types.str;
     };
@@ -65,7 +65,7 @@ in
     };
 
     backends = mkOption {
-      description = "List of backends statsd will use for data persistance";
+      description = "List of backends statsd will use for data persistence";
       default = ["graphite"];
       example = ["graphite" pkgs.nodePackages."statsd-influxdb-backend"];
       type = types.listOf (types.either types.str types.package);