Fix formatting typo in README

This commit is contained in:
2025-10-24 13:58:25 +00:00
parent b90d601490
commit a3e89d3460

View File

@@ -34,7 +34,7 @@ $ pip install -e .
- Find the refactoring Give It A Try in `files/convert_mass.py` - Find the refactoring Give It A Try in `files/convert_mass.py`
# Day 4 Resourecs # 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 - [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. - [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. - [`ctypes`](https://docs.python.org/3/library/ctypes.html) - a lower level tool for extending Python with C.