summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2021-03-07 11:47:39 +0000
committerGitHub <noreply@github.com>2021-03-07 11:47:39 +0000
commit247c6f4ce39c14c5845467d93c0cd869a8987572 (patch)
treeab1b0eea50ce3d1a7cfd5641bcd1fc7b141e15b5 /doc
parentc3b9c62ebafb51c8c688075a9a0480889711a021 (diff)
parent52de3976b8a9782f550bc1eb6e3d4d0ab9c89896 (diff)
downloadnixpkgs-247c6f4ce39c14c5845467d93c0cd869a8987572.tar
nixpkgs-247c6f4ce39c14c5845467d93c0cd869a8987572.tar.gz
nixpkgs-247c6f4ce39c14c5845467d93c0cd869a8987572.tar.bz2
nixpkgs-247c6f4ce39c14c5845467d93c0cd869a8987572.tar.lz
nixpkgs-247c6f4ce39c14c5845467d93c0cd869a8987572.tar.xz
nixpkgs-247c6f4ce39c14c5845467d93c0cd869a8987572.tar.zst
nixpkgs-247c6f4ce39c14c5845467d93c0cd869a8987572.zip
Merge pull request #115322 from dotlambda/doc-lt
doc: replace &lt; with < in Markdown
Diffstat (limited to 'doc')
-rw-r--r--doc/builders/packages/emacs.section.md2
-rw-r--r--doc/languages-frameworks/qt.section.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/builders/packages/emacs.section.md b/doc/builders/packages/emacs.section.md
index b4723a22bb1..93a819bc79b 100644
--- a/doc/builders/packages/emacs.section.md
+++ b/doc/builders/packages/emacs.section.md
@@ -36,7 +36,7 @@ You can install it like any other packages via `nix-env -iA myEmacs`. However, t
       ;; load some packages
 
       (use-package company
-        :bind ("&lt;C-tab&gt;" . company-complete)
+        :bind ("<C-tab>" . company-complete)
         :diminish company-mode
         :commands (company-mode global-company-mode)
         :defer 1
diff --git a/doc/languages-frameworks/qt.section.md b/doc/languages-frameworks/qt.section.md
index b6525490c85..9747c1037ad 100644
--- a/doc/languages-frameworks/qt.section.md
+++ b/doc/languages-frameworks/qt.section.md
@@ -121,7 +121,7 @@ Use the `meta.broken` attribute to disable the package for unsupported Qt versio
 
 stdenv.mkDerivation {
   # ...
-  # Disable this library with Qt &lt; 5.9.0
+  # Disable this library with Qt < 5.9.0
   meta.broken = lib.versionOlder qtbase.version "5.9.0";
 }
 ```