summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorRaphael Das Gupta <git@raphael.dasgupta.ch>2017-11-06 22:33:37 +0100
committerRobin Gloster <mail@glob.in>2017-11-07 11:09:40 +0100
commit27c8fd24e509d7ab0d80c7da1ab1f9ebb739c442 (patch)
tree279a4cd5a59652f98e1f9d6dfc25a61dd39647d9 /nixos
parent05de801c1aa0eb85b4a91828f7174fa2d29222e1 (diff)
downloadnixpkgs-27c8fd24e509d7ab0d80c7da1ab1f9ebb739c442.tar
nixpkgs-27c8fd24e509d7ab0d80c7da1ab1f9ebb739c442.tar.gz
nixpkgs-27c8fd24e509d7ab0d80c7da1ab1f9ebb739c442.tar.bz2
nixpkgs-27c8fd24e509d7ab0d80c7da1ab1f9ebb739c442.tar.lz
nixpkgs-27c8fd24e509d7ab0d80c7da1ab1f9ebb739c442.tar.xz
nixpkgs-27c8fd24e509d7ab0d80c7da1ab1f9ebb739c442.tar.zst
nixpkgs-27c8fd24e509d7ab0d80c7da1ab1f9ebb739c442.zip
nixos/mysql: fix typo in description of mysql.bind option
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/databases/mysql.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/databases/mysql.nix b/nixos/modules/services/databases/mysql.nix
index 845e6d4c22e..c6c463bce7d 100644
--- a/nixos/modules/services/databases/mysql.nix
+++ b/nixos/modules/services/databases/mysql.nix
@@ -67,7 +67,7 @@ in
         type = types.nullOr types.str;
         default = null;
         example = literalExample "0.0.0.0";
-        description = "Address to bind to. The default it to bind to all addresses";
+        description = "Address to bind to. The default is to bind to all addresses";
       };
 
       port = mkOption {