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 ("<C-tab>" . company-complete) + :bind ("" . 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 < 5.9.0 + # Disable this library with Qt < 5.9.0 meta.broken = lib.versionOlder qtbase.version "5.9.0"; } ```