summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIBeTheBlueCat <93213509+IBeTheBlueCat@users.noreply.github.com>2024-04-28 03:47:24 +0100
committerGitHub <noreply@github.com>2024-04-28 04:47:24 +0200
commit6977b4dcff4083c28f8bf78a11e7848e9b2f10ac (patch)
treec513ff6d847089ff0b8f7286a6bf0a1b9466208d
parentad6acfc3055cc798283b2080cee06d585b544824 (diff)
nixos/doc: fix typo in abstractions.section.md (#305836)
I found this while perusing the manual thinking about whether or not to install NixOS on my new laptop. It threw me for a loop for a second but as best I can tell this meant to be ".org" like the rest of the example, and not ".com"
-rw-r--r--nixos/doc/manual/configuration/abstractions.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/doc/manual/configuration/abstractions.section.md b/nixos/doc/manual/configuration/abstractions.section.md
index 5bc44aa72245..06356c472ba9 100644
--- a/nixos/doc/manual/configuration/abstractions.section.md
+++ b/nixos/doc/manual/configuration/abstractions.section.md
@@ -35,7 +35,7 @@ in
{
services.httpd.virtualHosts =
{ "blog.example.org" = (commonConfig // { documentRoot = "/webroot/blog.example.org"; });
- "wiki.example.org" = (commonConfig // { documentRoot = "/webroot/wiki.example.com"; });
+ "wiki.example.org" = (commonConfig // { documentRoot = "/webroot/wiki.example.org"; });
};
}
```