Merge "Use single quotes for single char"

This commit is contained in:
Zuul 2024-11-28 18:49:52 +00:00 committed by Gerrit Code Review
commit efb9235a2d

@ -371,7 +371,7 @@ Some({{ val }})
{{ dst_var }}.{{ param.remote_name }}(
val.iter()
.cloned()
.map(|x| Vec::from([x.split(",").collect()]))
.map(|x| Vec::from([x.split(',').collect()]))
.collect::<Vec<_>>(),
);
{%- elif param["setter_type"] is defined %}