Update README.md

This commit is contained in:
Hermet Park 2023-07-05 23:09:13 +09:00 committed by GitHub
parent 46aa29781a
commit e3b1cd86f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
```