doc: replace &lt; with < in Markdown

This commit is contained in:
Robert Schütz
2021-03-07 11:40:18 +01:00
parent 413b44590f
commit 52de3976b8
2 changed files with 2 additions and 2 deletions

View File

@@ -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";
}
```