about summary refs log tree commit diff
path: root/doc/builders/packages/dlib.xml
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-10-30 11:03:55 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-30 11:17:14 +0100
commitaad81ec8cd158a9e11f4d35fc6022d1300fcb4c6 (patch)
treeb947a433a8365601ef7758d13029d638a83fd5fb /doc/builders/packages/dlib.xml
parentacfc517a80ba4e53508fc38a09dd293aeb487cd2 (diff)
downloadnixlib-aad81ec8cd158a9e11f4d35fc6022d1300fcb4c6.tar
nixlib-aad81ec8cd158a9e11f4d35fc6022d1300fcb4c6.tar.gz
nixlib-aad81ec8cd158a9e11f4d35fc6022d1300fcb4c6.tar.bz2
nixlib-aad81ec8cd158a9e11f4d35fc6022d1300fcb4c6.tar.lz
nixlib-aad81ec8cd158a9e11f4d35fc6022d1300fcb4c6.tar.xz
nixlib-aad81ec8cd158a9e11f4d35fc6022d1300fcb4c6.tar.zst
nixlib-aad81ec8cd158a9e11f4d35fc6022d1300fcb4c6.zip
nixpkgs manual: fix white space and indentation
Diffstat (limited to 'doc/builders/packages/dlib.xml')
-rw-r--r--doc/builders/packages/dlib.xml28
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/builders/packages/dlib.xml b/doc/builders/packages/dlib.xml
index 98c211cf9df7..5f768dd51b62 100644
--- a/doc/builders/packages/dlib.xml
+++ b/doc/builders/packages/dlib.xml
@@ -1,24 +1,24 @@
 <section xmlns="http://docbook.org/ns/docbook"
          xmlns:xlink="http://www.w3.org/1999/xlink"
          xml:id="dlib">
-  <title>DLib</title>
+ <title>DLib</title>
 
-  <para>
-   <link xlink:href="http://dlib.net/">DLib</link> is a modern, C++-based toolkit which provides several machine learning algorithms.
-  </para>
+ <para>
+  <link xlink:href="http://dlib.net/">DLib</link> is a modern, C++-based toolkit which provides several machine learning algorithms.
+ </para>
 
-  <section xml:id="compiling-without-avx-support">
-   <title>Compiling without AVX support</title>
+ <section xml:id="compiling-without-avx-support">
+  <title>Compiling without AVX support</title>
 
-   <para>
-    Especially older CPUs don't support <link xlink:href="https://en.wikipedia.org/wiki/Advanced_Vector_Extensions">AVX</link> (<abbrev>Advanced Vector Extensions</abbrev>) instructions that are used by DLib to optimize their algorithms.
-   </para>
+  <para>
+   Especially older CPUs don't support <link xlink:href="https://en.wikipedia.org/wiki/Advanced_Vector_Extensions">AVX</link> (<abbrev>Advanced Vector Extensions</abbrev>) instructions that are used by DLib to optimize their algorithms.
+  </para>
 
-   <para>
-    On the affected hardware errors like <literal>Illegal instruction</literal> will occur. In those cases AVX support needs to be disabled:
+  <para>
+   On the affected hardware errors like <literal>Illegal instruction</literal> will occur. In those cases AVX support needs to be disabled:
 <programlisting>self: super: {
   dlib = super.dlib.override { avxSupport = false; };
 }</programlisting>
-   </para>
-  </section>
-</section>
\ No newline at end of file
+  </para>
+ </section>
+</section>