From d44539aad9b1b2ef9ec9fe60e8fb99d0cfd17747 Mon Sep 17 00:00:00 2001
From: Anton Akhmerov <anton.akhmerov@gmail.com>
Date: Tue, 22 Jan 2019 10:16:53 +0000
Subject: [PATCH] typo fix

---
 src/2_debye_model.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/2_debye_model.md b/src/2_debye_model.md
index 49c6b46c..3d58cad2 100644
--- a/src/2_debye_model.md
+++ b/src/2_debye_model.md
@@ -134,8 +134,8 @@ T_D = fit[0][0]
 fig, ax = pyplot.subplots()
 ax.scatter(T, c)
 ax.set_title('Heat capacity of silver compared to the Debye and Einstein models')
-ax.plot(temp, c_debye(temp, T_D), label=f'Debye model, $T_e={T_E:.5}$')
-ax.plot(temp, c_einstein(temp, T_E), label=f'Einstein model, $T_e={T_E:.5}$')
+ax.plot(temp, c_debye(temp, T_D), label=f'Debye model, $T_D={T_D:.5}$')
+ax.plot(temp, c_einstein(temp, T_E), label=f'Einstein model, $T_E={T_E:.5}$')
 ax.set_ylim(bottom=0, top=3)
 ax.set_xlim(0, 215)
 ax.set_xlabel('$T(K)$')
-- 
GitLab