From 51053b09b84e0aba51f686078a2f5aa8522568b6 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Tue, 4 Aug 2026 10:08:00 +1000 Subject: [PATCH] FIX: point the Polars benchmarks link at its final destination www.pola.rs redirects to the apex domain; the direct URL avoids the redirect flagged in the weekly link-check report. See #597 (closes after the next publish clears the workspace.html redirect already fixed on main by #590). Co-Authored-By: Claude Fable 5 --- lectures/polars.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/polars.md b/lectures/polars.md index 1285e065..51e68500 100644 --- a/lectures/polars.md +++ b/lectures/polars.md @@ -51,7 +51,7 @@ Polars is designed with performance and memory efficiency in mind, leveraging: * **Memory**: pandas typically needs 5--10x your dataset size in RAM; Polars needs only 2--4x * **Speed**: Polars is 10--100x faster for many common operations -* **See**: [Polars TPC-H benchmarks](https://www.pola.rs/benchmarks/) for up-to-date performance comparisons +* **See**: [Polars TPC-H benchmarks](https://pola.rs/benchmarks/) for up-to-date performance comparisons ``` Throughout the lecture, we will assume that the following imports have taken place