From af9726c4bd25cb1d3e55d001876bf6e4152e6427 Mon Sep 17 00:00:00 2001 From: Martin Treml Date: Sun, 18 May 2025 20:09:12 +0200 Subject: [PATCH] fix, Typo in Guidelines The `nix build .#docs-html` is building `xhtml` files instead of `html` files --- docs/manual/hacking/guidelines.md | 2 +- docs/release-notes/rl-0.8.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/manual/hacking/guidelines.md b/docs/manual/hacking/guidelines.md index a1db27e8..17e916a1 100644 --- a/docs/manual/hacking/guidelines.md +++ b/docs/manual/hacking/guidelines.md @@ -26,7 +26,7 @@ by typing the following in a shell within a clone of the **nvf** Git repository: ```console $ nix build .#docs-html -$ xdg-open $PWD/result/share/doc/nvf/index.html +$ xdg-open $PWD/result/share/doc/nvf/index.xhtml ``` ## Formatting Code {#sec-guidelines-formatting} diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index d72afaef..59216bda 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -412,3 +412,4 @@ - Add [avante.nvim](https://github.com/yetone/avante.nvim) plugin another AI Assistant. +- Fix typo in Guidelines.