mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
Merge pull request #235625 from ShamrockLee/lib-doc-tidy
This commit is contained in:
commit
59b08b7ee8
1 changed files with 2 additions and 2 deletions
|
@ -307,14 +307,14 @@ rec {
|
||||||
|
|
||||||
/* Reads a JSON file.
|
/* Reads a JSON file.
|
||||||
|
|
||||||
Type :: path -> any
|
Type: importJSON :: path -> any
|
||||||
*/
|
*/
|
||||||
importJSON = path:
|
importJSON = path:
|
||||||
builtins.fromJSON (builtins.readFile path);
|
builtins.fromJSON (builtins.readFile path);
|
||||||
|
|
||||||
/* Reads a TOML file.
|
/* Reads a TOML file.
|
||||||
|
|
||||||
Type :: path -> any
|
Type: importTOML :: path -> any
|
||||||
*/
|
*/
|
||||||
importTOML = path:
|
importTOML = path:
|
||||||
builtins.fromTOML (builtins.readFile path);
|
builtins.fromTOML (builtins.readFile path);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue