From 7bad711702f65c74111f7c3cdfd07d504d181d2b Mon Sep 17 00:00:00 2001 From: nicoo Date: Sat, 21 Nov 2020 22:03:28 +0100 Subject: [PATCH] home/index.md: Fix minor typo on project homepage --- home/content/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/content/index.md b/home/content/index.md index d01b7219..25b3d1a5 100644 --- a/home/content/index.md +++ b/home/content/index.md @@ -2,7 +2,7 @@ title: Welcome to the home page of Plotters, the Rust drawing and plotting libra Plotters is a library that helps you produce figures and visualize data in Rust. It supports both rendering static image and realtime rendering and targeted to multiple backends, including: bitmap formats (png, bmp, gif, etc), vector graph (svg), window and HTML5 canvas. -Generally speaking, Plotters is a library for plotting in Rust. But instead of directly addressing the plotting problem, Plotters adpots a very different approach, which provides a convient drawing API which makes drawing a plot much easier. +Generally speaking, Plotters is a library for plotting in Rust. But instead of directly addressing the plotting problem, Plotters adopts a very different approach, which provides a convient drawing API which makes drawing a plot much easier. Plotters is a drawing library that uses unified high-level APIs on different backend and allows programmer to define customized coordinate systems. Any types of charts is abstracted as a series of drawing operations, by doing so, Plotters doesn't limit programmer on what types of chart they can draw. You can draw line series, histogram, scatters, error bars, candel sticks chart easily and everything can be extend.