From 02fd5f54504c4144d66d5d78a1a6f081e3fa5812 Mon Sep 17 00:00:00 2001 From: JP-Ellis Date: Mon, 29 Jul 2024 10:22:02 +1000 Subject: [PATCH] chore: fix typo in previous blog post Signed-off-by: JP-Ellis --- .../posts/2024/05-02 integrating rust ffi with pact python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/blog/posts/2024/05-02 integrating rust ffi with pact python.md b/docs/blog/posts/2024/05-02 integrating rust ffi with pact python.md index 5edeb42139..6483615484 100644 --- a/docs/blog/posts/2024/05-02 integrating rust ffi with pact python.md +++ b/docs/blog/posts/2024/05-02 integrating rust ffi with pact python.md @@ -15,7 +15,7 @@ In this blog post, I will delve into how this is all achieved. From explaining h -## Briding Python and Binary Libraries +## Bridging Python and Binary Libraries Python, known for its dynamic typing and automated memory management, is fundamentally an interpreted language. Despite not having innate capabilities to directly interact with binary libraries, most Python interpreters bridge this gap efficiently. For instance, CPython—the principal interpreter—enables the creation of binary extensions[^binary_extension] and similarly, PyPy—a widely-used alternative—offers comparable functionalities[^pypy].