From a3e89d346019c41b0f4e8faf4fd4e11a24713ab0 Mon Sep 17 00:00:00 2001 From: Tim Diller Date: Fri, 24 Oct 2025 13:58:25 +0000 Subject: [PATCH] Fix formatting typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4dc4e0c..824526c 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ $ pip install -e . - Find the refactoring Give It A Try in `files/convert_mass.py` # Day 4 Resourecs -- The `[Day 4 Notebook](files/Day4.ipynb) is in `files/Day4.ipynb`. +- The [Day 4 Notebook](files/Day4.ipynb) is in `files/Day4.ipynb`. - [Arrays and Lists](https://blog.dillerdigital.com/arrays-and-lists/) from the Diller Digital Blog - [Cython](https://cython.org/) - tool for building C extensions in Python. Particularly good for seamlessly handing off Numpy `ndarray`s to C-array code. Tim and Corran's former coworker Kurt Smith literally [wrote the book](https://www.oreilly.com/library/view/cython/9781491901731/) on Cython. - [`ctypes`](https://docs.python.org/3/library/ctypes.html) - a lower level tool for extending Python with C.