From a49be76ff57c367844a16240006ddbcf97ed00da Mon Sep 17 00:00:00 2001 From: mkusaka Date: Fri, 30 Dec 2022 03:39:53 +0900 Subject: [PATCH] fix image path --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3cb344f4..020421e0 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ import ohm from 'https://unpkg.com/ohm-js@16/dist/ohm.esm.js'; #### Defining Grammars -![Instantiating a grammar](http://harc.github.io//ohm/doc/images/instantiating-grammars.png) +![Instantiating a grammar](doc/images/instantiating-grammars.png) To use Ohm, you need a grammar that is written in the Ohm language. The grammar provides a formal definition of the language or data format that you want to parse. There are a few different ways @@ -131,7 +131,7 @@ For more information, see [Instantiating Grammars](doc/api-reference.md#instanti #### Using Grammars -![Matching input](http://harc.github.io/ohm/doc/images/matching.png) +![Matching input](doc/images/matching.png)