docs: quote URL literals

This commit is contained in:
figsoda 2023-03-19 11:26:48 -04:00
parent b5b6055bbf
commit 54b8da0b10

View file

@ -54,7 +54,7 @@ output attribute). They are also allowed in the `inputs` attribute
of a flake, e.g. of a flake, e.g.
```nix ```nix
inputs.nixpkgs.url = github:NixOS/nixpkgs; inputs.nixpkgs.url = "github:NixOS/nixpkgs";
``` ```
is equivalent to is equivalent to
@ -282,7 +282,7 @@ Nixpkgs flake and provides a single package (i.e. an
{ {
description = "A flake for building Hello World"; description = "A flake for building Hello World";
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-20.03; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-20.03";
outputs = { self, nixpkgs }: { outputs = { self, nixpkgs }: {
@ -374,7 +374,7 @@ inputs.nixpkgs = {
Alternatively, you can use the URL-like syntax: Alternatively, you can use the URL-like syntax:
```nix ```nix
inputs.import-cargo.url = github:edolstra/import-cargo; inputs.import-cargo.url = "github:edolstra/import-cargo";
inputs.nixpkgs.url = "nixpkgs"; inputs.nixpkgs.url = "nixpkgs";
``` ```