From cbbea457e45b10541fb88b35c1d7fc94fc29c466 Mon Sep 17 00:00:00 2001 From: Elias Kuthe Date: Thu, 13 Oct 2022 12:46:09 +0100 Subject: [PATCH] Update link to original implementation --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8679a3b..317d8c8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A port of [dlmalloc] to Rust. [Documentation](https://docs.rs/dlmalloc) -[dlmalloc]: http://gee.cs.oswego.edu/dl/html/malloc.html +[dlmalloc]: https://gee.cs.oswego.edu/dl/html/malloc.html ## Why dlmalloc? diff --git a/src/lib.rs b/src/lib.rs index b972ccb..3447ae6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! A Rust port of the `dlmalloc` allocator. //! //! The `dlmalloc` allocator is described at -//! http://g.oswego.edu/dl/html/malloc.html and this Rust crate is a straight +//! and this Rust crate is a straight //! port of the C code for the allocator into Rust. The implementation is //! wrapped up in a `Dlmalloc` type and has support for Linux, OSX, and Wasm //! currently.