From 518917a3e430039adb66c0ef3e37d012c7027446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raphael=20H=C3=B6ser?= Date: Thu, 22 Aug 2024 13:04:31 +0200 Subject: [PATCH] chore: fix link to README.md The docs link to README.md still linked to the master branch, which leads to a warning by GitHub about the branch being renamed to main when opening it. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 72f1109c0c..283d5eca3d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ //! This crate provides native rust implementations of image encoding and decoding as well as some //! basic image manipulation functions. Additional documentation can currently also be found in the //! [README.md file which is most easily viewed on -//! github](https://github.com/image-rs/image/blob/master/README.md). +//! github](https://github.com/image-rs/image/blob/main/README.md). //! //! There are two core problems for which this library provides solutions: a unified interface for image //! encodings and simple generic buffers for their content. It's possible to use either feature