summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2018-03-20 15:59:59 -0400
committerGitHub <noreply@github.com>2018-03-20 15:59:59 -0400
commit1108d973657c196bd5a2ff4fafa9fae2653e2c4c (patch)
treede06ff011763ceb3eee82ad13a87d7aa0f41ac64
parent45e253cacbd272f9bab414b260dd5bf5331d0409 (diff)
parentabf27609c6ffd4d90932219a2c839679fbeb0da3 (diff)
downloadnixlib-1108d973657c196bd5a2ff4fafa9fae2653e2c4c.tar
nixlib-1108d973657c196bd5a2ff4fafa9fae2653e2c4c.tar.gz
nixlib-1108d973657c196bd5a2ff4fafa9fae2653e2c4c.tar.bz2
nixlib-1108d973657c196bd5a2ff4fafa9fae2653e2c4c.tar.lz
nixlib-1108d973657c196bd5a2ff4fafa9fae2653e2c4c.tar.xz
nixlib-1108d973657c196bd5a2ff4fafa9fae2653e2c4c.tar.zst
nixlib-1108d973657c196bd5a2ff4fafa9fae2653e2c4c.zip
Merge pull request #37484 from obsidiansystems/style-nit
top-level: Move comma for stylistic consistency
-rw-r--r--pkgs/top-level/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix
index 9cf9eb4db658..da7fc1bed34c 100644
--- a/pkgs/top-level/default.nix
+++ b/pkgs/top-level/default.nix
@@ -22,9 +22,9 @@
   # `*Platform`s.
   localSystem
 
-  # The system packages will ultimately be run on. Null if the two should be the
+, # The system packages will ultimately be run on. Null if the two should be the
   # same.
-, crossSystem ? null
+  crossSystem ? null
 
 , # Allow a configuration attribute set to be passed in as an argument.
   config ? {}