Skip to content

Commit 3cbc558

Browse files
committed
nixosModules/master: fix several typos
1 parent ec2f3a9 commit 3cbc558

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nixosModules/master.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let
1313
name = "interpolate";
1414

1515
description = ''
16-
A type represnting a Buildbot interpolation string, supports interpolations like `result-%(prop:attr)s`.
16+
A type representing a Buildbot interpolation string, supports interpolations like `result-%(prop:attr)s`.
1717
'';
1818

1919
check = x: x ? "_type" && x._type == "interpolate" && x ? "value";
@@ -453,7 +453,7 @@ in
453453
type = lib.types.addCheck lib.types.int (x: x > 0);
454454
default = 60;
455455
description = ''
456-
How often to poll each repository by default expressed in seconds. This value can be overriden
456+
How often to poll each repository by default expressed in seconds. This value can be overridden
457457
per repository.
458458
'';
459459
};
@@ -462,7 +462,7 @@ in
462462
type = lib.types.nullOr lib.types.int;
463463
default = null;
464464
description = ''
465-
If non-null and non-zero pulls will be randomly spread apart up to the specificied
465+
If non-null and non-zero pulls will be randomly spread apart up to the specified
466466
number of seconds. Can be used to avoid a thundering herd situation.
467467
'';
468468
};
@@ -472,7 +472,7 @@ in
472472
default = null;
473473
description = ''
474474
If non-null the specified SSH key will be used to fetch all configured repositories.
475-
This option is overriden by the per-repository `sshPrivateKeyFile` option.
475+
This option is overridden by the per-repository `sshPrivateKeyFile` option.
476476
'';
477477
};
478478

@@ -481,7 +481,7 @@ in
481481
default = null;
482482
description = ''
483483
If non-null the specified known hosts file will be matched against when connecting to
484-
repositories over SSH. This option is overriden by the per-repository `sshKnownHostsFile`
484+
repositories over SSH. This option is overridden by the per-repository `sshKnownHostsFile`
485485
option.
486486
'';
487487
};

0 commit comments

Comments
 (0)