From e3b1cd86f9942435c533ee424a4085e10c8f833f Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Wed, 5 Jul 2023 23:09:13 +0900 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ab62928a..e69b3ce4 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,7 @@ The following code snippet shows how to draw SVG image using ThorVG: ```cpp auto picture = tvg::Picture::gen(); //generate a picture -picture->load("tiger.svg"); //load SVG file +picture->load("tiger.svg"); //load a SVG file canvas->push(move(picture)); //push the picture into the canvas ```