From a4005b3e9ce50b8dec893de9705259b9d7d2ddfb Mon Sep 17 00:00:00 2001 From: Zoey Zheng Date: Mon, 25 May 2026 21:49:30 +1000 Subject: [PATCH] Fix Celsius spelling in regression lecture Corrects the spelling of Celsius in the x-axis label. --- lectures/simple_linear_regression.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/simple_linear_regression.md b/lectures/simple_linear_regression.md index 137d4539a..ff8c32f83 100644 --- a/lectures/simple_linear_regression.md +++ b/lectures/simple_linear_regression.md @@ -68,7 +68,7 @@ ax = df.plot( y='Y', kind='scatter', ylabel='Ice-cream sales ($\'s)', - xlabel='Degrees celcius' + xlabel='Degrees Celsius' ) ```