summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-03-07 11:40:18 +0100
committerRobert Schütz <dev@schuetz-co.de>2021-03-07 11:40:18 +0100
commit52de3976b8a9782f550bc1eb6e3d4d0ab9c89896 (patch)
treec778487281e30487dae616b36b2b15282d7e2a7e
parent413b44590f4b3e9d06a5f84f13b60e440be5327c (diff)
downloadnixpkgs-52de3976b8a9782f550bc1eb6e3d4d0ab9c89896.tar
nixpkgs-52de3976b8a9782f550bc1eb6e3d4d0ab9c89896.tar.gz
nixpkgs-52de3976b8a9782f550bc1eb6e3d4d0ab9c89896.tar.bz2
nixpkgs-52de3976b8a9782f550bc1eb6e3d4d0ab9c89896.tar.lz
nixpkgs-52de3976b8a9782f550bc1eb6e3d4d0ab9c89896.tar.xz
nixpkgs-52de3976b8a9782f550bc1eb6e3d4d0ab9c89896.tar.zst
nixpkgs-52de3976b8a9782f550bc1eb6e3d4d0ab9c89896.zip
doc: replace &lt; with < in Markdown
-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";
 }
 ```