summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2021-02-12 10:37:16 +0100
committerDaniël de Kok <me@danieldk.eu>2021-02-12 10:37:16 +0100
commit933c2425d9e0bfa58aec5f3d4024120002ba7d5b (patch)
tree254b8513d3719e9658066e343c62adb8725934a3
parent27f172ebd13f5df63563be91408c59c322e8b4dc (diff)
downloadnixpkgs-933c2425d9e0bfa58aec5f3d4024120002ba7d5b.tar
nixpkgs-933c2425d9e0bfa58aec5f3d4024120002ba7d5b.tar.gz
nixpkgs-933c2425d9e0bfa58aec5f3d4024120002ba7d5b.tar.bz2
nixpkgs-933c2425d9e0bfa58aec5f3d4024120002ba7d5b.tar.lz
nixpkgs-933c2425d9e0bfa58aec5f3d4024120002ba7d5b.tar.xz
nixpkgs-933c2425d9e0bfa58aec5f3d4024120002ba7d5b.tar.zst
nixpkgs-933c2425d9e0bfa58aec5f3d4024120002ba7d5b.zip
doc: fix syntax error in BLAS/LAPACK overlay example
Attribute-values pairs were not properly terminated by a semicolon.
-rw-r--r--doc/using/overlays.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/using/overlays.xml b/doc/using/overlays.xml
index 9ffbb4edd98..8bda235d43d 100644
--- a/doc/using/overlays.xml
+++ b/doc/using/overlays.xml
@@ -236,10 +236,11 @@ self: super:
 {
   blas = super.blas.override {
     blasProvider = self.mkl;
-  }
+  };
+
   lapack = super.lapack.override {
     lapackProvider = self.mkl;
-  }
+  };
 }
 </programlisting>
      <para>