From 8017b1495ef901d992d9a345147dc60647152068 Mon Sep 17 00:00:00 2001 From: MarionBWeinzierl Date: Thu, 11 Jul 2024 10:25:36 +0100 Subject: [PATCH] fixed two typos --- slides/_comments_docstrings.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/_comments_docstrings.qmd b/slides/_comments_docstrings.qmd index 262a16b..6569c0d 100644 --- a/slides/_comments_docstrings.qmd +++ b/slides/_comments_docstrings.qmd @@ -77,7 +77,7 @@ quotes: `"""..."""`. Unlike comments, docstrings follow a set format. Various formatting options exist: numpy, Google, reST, etc.\ -We will use numpydoc it is readable and widely used in scientific code.\ +We will use numpydoc as it is readable and widely used in scientific code.\ Full guidance for [numpydoc is available](https://numpydoc.readthedocs.io/en/latest/format.html). @@ -267,7 +267,7 @@ Go to exercise 5 and examine the comments: Docstrings: - Work through the file adding docstrings where they are missing. -- If you are unsure about variable types or meanings at any point you can sneak a look ahead to the code in exercise 5. +- If you are unsure about variable types or meanings at any point you can sneak a look ahead to the code in exercise 6. ## READMEs {.smaller}