diff --git a/README.md b/README.md
index 3714611658f24f1bc16f01d4473091bc19f1085f..da5202e3a7fac371f40e77b5bb21b16f4c6d8138 100644
--- a/README.md
+++ b/README.md
@@ -37,12 +37,8 @@ consist of the following:
 ## Type `Diagonalizer` (`diagonalizer.hpp`), class to diagonalize symmetric Matrices
 1. Members:
    - `std::vector<double> ev(std::vector<double> mat, size_t N)`:
-
-   returns eigenvalues of the symmetric matrix mat of linear size N
-
-   throws upon diagonalization failure
+     - returns eigenvalues of the symmetric matrix mat of linear size N
+     - throws upon diagonalization failure
    - `std::pair<std::vector<double>, std::vector<double> > evv(std::vector<double> mat, size_t N)`:
-
-   returns pair of (eigenvalues, eigenvectors) of the symmetric matrix mat of size N
-
-   throws upon diagonalization failure
+     - returns pair of (eigenvalues, eigenvectors) of the symmetric matrix mat of size N
+     - throws upon diagonalization failure