Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Hadeweka committed Jan 2, 2022
1 parent de4e50f commit 7963895
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Releases

### Version 0.16.1

#### Bugfixes

* Fixed typo in keyword module function wrappers

### Version 0.16.0

Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: anyolite
version: 0.16.0
version: 0.16.1

authors:
- Hadeweka
Expand Down
2 changes: 1 addition & 1 deletion src/macros/FunctionCalls.cr
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ module Anyolite
*{{converted_regular_args}},
{% c = 0 %}
{% for keyword in keyword_args %}
{{keyword.var.id}}: Anyolite::Macro.convert_from_ruby_to_crystal({{rb}}, {{kw_args}}.values[{{c}}], {{keyword}}, context: {{context}}},
{{keyword.var.id}}: Anyolite::Macro.convert_from_ruby_to_crystal({{rb}}, {{kw_args}}.values[{{c}}], {{keyword}}, context: {{context}},
type_vars: {{type_vars}}, type_var_names: {{type_var_names}}, debug_information: {{proc.stringify + " - " + keyword_args.stringify}}),
{% c += 1 %}
{% end %}
Expand Down

0 comments on commit 7963895

Please sign in to comment.