Commit 4cfdcedb authored by John Wiegley's avatar John Wiegley
Browse files

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

parent 2ad7d514
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 = {};
  };