examples: fix path in js_dom_draw_benchmark example docs (#20780)

This commit is contained in:
JalonSolov 2024-02-11 05:35:45 -05:00 committed by GitHub
parent 5da88800ae
commit 09095985d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
The steps below assume that your current directory path is the examples project directory.
```
cd examples/js_dom_draw_bechmark_chart
cd examples/js_dom_draw_benchmark_chart
```
Execute the following commands in separate terminal instances.

View File

@ -15,7 +15,7 @@ A message like `[Vweb] Running app on http://localhost:3001/` should appear
# To implement new benchmarks in v
In `examples/js_dom_draw_bechmark_chart/v_vweb_orm/src/main.v` path
In `examples/js_dom_draw_benchmark_chart/v_vweb_orm/src/main.v` path
Create a route returning a `Response` struct like:
```v ignore