summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/systems/parse.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/systems/parse.nix b/lib/systems/parse.nix
index 641a7f5d7584..f7c84bd41cc0 100644
--- a/lib/systems/parse.nix
+++ b/lib/systems/parse.nix
@@ -34,7 +34,7 @@ rec {
################################################################################
- types.openSignifiantByte = mkOptionType {
+ types.openSignificantByte = mkOptionType {
name = "significant-byte";
description = "Endianness";
merge = mergeOneOption;
@@ -42,7 +42,7 @@ rec {
types.significantByte = enum (attrValues significantBytes);
- significantBytes = setTypes types.openSignifiantByte {
+ significantBytes = setTypes types.openSignificantByte {
bigEndian = {};
littleEndian = {};
};