Fix a typo: types.openSignifiantByte -> types.openSignificantByte

This commit is contained in:
John Wiegley 2018-04-13 18:41:04 -07:00
parent 2ad7d5140c
commit 4cfdcedb71

View file

@ -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 = {};
};