Skip to content

Commit

Permalink
README fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pkedy committed May 1, 2022
1 parent 1606a8e commit bde3f32
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if (errors.length > 0) {
if (oper == undefined || oper.name.value != "update") {
return;
}
console.log(oper);
console.log(oper);
});
doc.accept(context, visitor);
}
Expand All @@ -46,9 +46,9 @@ if (errors.length > 0) {

```html
<script type="module">
import { parse, validate } from 'https://cdn.jsdelivr.net/npm/@apexlang/apex-js/dist/index.js';
import { CommonRules } from 'https://cdn.jsdelivr.net/npm/@apexlang/apex-js/dist/rules/index.js';
import { Context, Writer, AbstractVisitor } from 'https://cdn.jsdelivr.net/npm/@apexlang/apex-js/dist/ast/index.js';
import { parse, validate } from 'https://cdn.jsdelivr.net/npm/@apexlang/core/dist/index.js';
import { CommonRules } from 'https://cdn.jsdelivr.net/npm/@apexlang/core/dist/rules/index.js';
import { Context, Writer, AbstractVisitor } from 'https://cdn.jsdelivr.net/npm/@apexlang/core/dist/ast/index.js';
const source = `
namespace "mandelbrot"
Expand All @@ -71,7 +71,7 @@ if (errors.length > 0) {
if (oper == undefined || oper.name.value != "update") {
return;
}
console.log(oper);
console.log(oper);
});
doc.accept(context, visitor);
}
Expand Down

0 comments on commit bde3f32

Please sign in to comment.