From 80497e298d3c5729f7f2483bed333f27e3b7523e Mon Sep 17 00:00:00 2001 From: udlbook <110402648+udlbook@users.noreply.github.com> Date: Fri, 29 Sep 2023 12:51:12 +0100 Subject: [PATCH] Created using Colaboratory --- Notebooks/Chap01/1_1_BackgroundMathematics.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notebooks/Chap01/1_1_BackgroundMathematics.ipynb b/Notebooks/Chap01/1_1_BackgroundMathematics.ipynb index b57eaef..a1556c2 100644 --- a/Notebooks/Chap01/1_1_BackgroundMathematics.ipynb +++ b/Notebooks/Chap01/1_1_BackgroundMathematics.ipynb @@ -67,7 +67,7 @@ "source": [ "# Define a linear function with just one input, x\n", "def linear_function_1D(x,beta,omega):\n", - " # TODO -- replace the code lin below with formula for 1D linear equation\n", + " # TODO -- replace the code line below with formula for 1D linear equation\n", " y = x\n", "\n", " return y"