Skip to content

Commit

Permalink
Update example_versioned_docs/version-latest/26-number-parsing.md
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Rybicki <chrisr@monada.co>
  • Loading branch information
boyney123 and Chriscbr authored Sep 10, 2024
1 parent ecf53d7 commit be28f1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example_versioned_docs/version-latest/26-number-parsing.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ keywords: [Wing language, random]
```js playground example title="main.w"
let j = Json { a: 100 };

let x:num = num.fromStr("1");
let y:num = num.fromJson(j.get("a"));
let x: num = num.fromStr("1");
let y: num = num.fromJson(j.get("a"));

log(x);
log(y);
Expand Down

0 comments on commit be28f1e

Please sign in to comment.