Skip to content

Commit

Permalink
semantic version
Browse files Browse the repository at this point in the history
  • Loading branch information
masataka committed Oct 14, 2020
1 parent 4a9da91 commit 80bc06f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ When using in SAX style, create an instance of the parser and register the liste
The XML to be parsed is specified by Deno.Reader, UINT8 array, or a character string.

```typescript
import { SAXParser } from 'https://denopkg.com/masataka/xmlp@v0.11/mod.ts';
import { SAXParser } from 'https://denopkg.com/masataka/xmlp@v0.1.0/mod.ts';

// create a SAX parser instance
const parser = new SAXParser();
Expand Down Expand Up @@ -59,7 +59,7 @@ I think it's more interesting to write the Pull style than the SAX. This Pull pa
Currently the Pull parser supports Uint8 arrays and strings, not Deno.Reader.

```typeScript
import { PullParser } from 'https://denopkg.com/masataka/xmlp@v0.11/mod.ts';
import { PullParser } from 'https://denopkg.com/masataka/xmlp@v0.1.0/mod.ts';

// create a pull parser instance
const parser = new PullParser();
Expand Down

0 comments on commit 80bc06f

Please sign in to comment.