From d381ed09eb9a0fa6fb0bdc9972d399ca00a61ebc Mon Sep 17 00:00:00 2001
From: Anton Akhmerov <anton.akhmerov@gmail.com>
Date: Thu, 6 Jul 2023 23:55:21 +0200
Subject: [PATCH] typo fix

---
 qsymm/linalg.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qsymm/linalg.py b/qsymm/linalg.py
index 29c7e41..f4a125e 100644
--- a/qsymm/linalg.py
+++ b/qsymm/linalg.py
@@ -434,7 +434,7 @@ def solve_mat_eqn(HL, HR=None, hermitian=False, traceless=False,
     if isinstance(conjugate, bool):
         conjugate = [conjugate] * len(HL)
     if len(conjugate) != len(HL):
-        raise ValueError('Conugate must have the same length as HL.')
+        raise ValueError('Conjugate must have the same length as HL.')
     if not all(term.shape[0] == term.shape[1] for term in HL):
         raise ValueError('HL and HR must be a list of square matrices.')
 
-- 
GitLab