Author:ptrace Comitter:ptrace Date:2026-04-12 01:41:56 UTC Merge: eaac9896f739505913a87172a3ca0967e33e6224 1cf52569d91677fa9f5c1f66c2c82c9c4b323838

Merge pull request 'Removed init() from Hash Tables since it is deprecated' (#6) from chore/adapt-hash-table-change-from-jai into main

Reviewed-on: https://codeberg.org/ptrace/htmltemplate-jai/pulls/6

diff --git a/README.md b/README.md index b74d9f5..c6d848d 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Output: ``` $ jai -version Version: beta 0.2.026, built on 21 February 2026. Version: beta 0.2.028, built on 9 April 2026. ``` diff --git a/htmltemplate/lib.jai b/htmltemplate/lib.jai index 8c1dfc0..cb8407e 100644 --- a/htmltemplate/lib.jai +++ b/htmltemplate/lib.jai @@ -614,7 +614,6 @@ token_consume :: ( token_lookup_table_create :: (tokens: [..]Token) -> Table(string, Token) {     action_map: Table(string, Token);     init(*action_map);     for token: tokens {         table_set(*action_map, token.id, token);