From ee5be9876a0b4d750997a5de285f9e11e72f7e7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Chodzikiewicz?= Date: Wed, 3 Mar 2021 23:50:35 +0100 Subject: [PATCH] Fix urls in inline docs to files hosted on gitlab --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 151f2a0..1fa0a7b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,9 +16,9 @@ //! ### Single plot //! Simple plot example //! #### On color display: -//! ![single plot on color display](doc-resources/single-plot-color.png "Color plot of single curve") +//! ![single plot on color display](https://gitlab.com/mchodzikiewicz/embedded-plots/-/raw/master/single-plot-color.png "Color plot of single curve") //! #### On monochromatic display: -//! ![single plot on monochromatic display](doc-resources/single-plot-mono.png "Monochromatic plot of single curve") +//! ![single plot on monochromatic display](https://gitlab.com/mchodzikiewicz/embedded-plots/-/raw/master/single-plot-mono.png "Monochromatic plot of single curve") //! //! Code to render: //! ```rust @@ -56,7 +56,7 @@ //! //! ### Axis //! You can also use axis on its own, it looks like this: -//! ![free axis examples](doc-resources/free-axis-example.png "Free axis example") +//! ![free axis examples](https://gitlab.com/mchodzikiewicz/embedded-plots/-/raw/master/doc-resources/free-axis-example.png "Free axis example") //! Code to render example axis: //! ```rust //! use embedded_plots::axis::{Axis, Scale, Placement};