doc: fix syntax error in BLAS/LAPACK overlay example

Attribute-values pairs were not properly terminated by a semicolon.
This commit is contained in:
Daniël de Kok 2021-02-12 10:37:16 +01:00
parent 27f172ebd1
commit 933c2425d9

View file

@ -236,10 +236,11 @@ self: super:
{
blas = super.blas.override {
blasProvider = self.mkl;
}
};
lapack = super.lapack.override {
lapackProvider = self.mkl;
}
};
}
</programlisting>
<para>