Skip to content

Commit fd7dbc4

Browse files
committed
Add missing comma
1 parent 20695d9 commit fd7dbc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/svix_resource.rs.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ impl<'a> {{ resource_type_name }}<'a> {
106106
{{ api_mod_name }}::{{ params_struct_name }} {
107107
{% for p in op.path_params -%}{{ p }},{% endfor %}
108108
{% if op.request_body_schema_name is defined -%}
109-
{{ op.request_body_schema_name | to_snake_case -}}
109+
{{ op.request_body_schema_name | to_snake_case -}},
110110
{% endif -%}
111111
{% for p in op.query_params %}{{ p.name }},{% endfor -%}
112112
{% if has_header_params %}idempotency_key,{% endif %}

0 commit comments

Comments
 (0)