Skip to content

Commit e8b70b8

Browse files
aminyaalhirzel
andcommitted
fix: typo in get_arg_xmlupdater
Co-Authored-By: Alex Hirzel <324152+alhirzel@users.noreply.github.com>
1 parent a3f3e42 commit e8b70b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/@aml/@aml_create.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function aml_create(expr::Expr, args_param, args_defaultvalue, args_type, args_v
6868
args_xmlextractor[iArg]=get_arg_xmlextractor(argcustomextractor, inps...)
6969

7070
if is_struct_mutable
71-
args_xmludpater[iArg] = get_arg_xmludpater(argcustomupdater, inps...)
71+
args_xmludpater[iArg] = get_arg_xmlupdater(argcustomupdater, inps...)
7272
end
7373

7474
end # endfor

src/@aml/@aml_create/get_arg_xml_.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ end
5151
"""
5252
Get a argument updater expression
5353
"""
54-
function get_arg_xmludpater(argcustomupdater, has_arg_xmlchecker::Bool, esc_argtype, esc_argvar, argname, argliteraltype, esc_argfunction, argsym, argvarcall)
54+
function get_arg_xmlupdater(argcustomupdater, has_arg_xmlchecker::Bool, esc_argtype, esc_argvar, argname, argliteraltype, esc_argfunction, argsym, argvarcall)
5555

5656
if !has_arg_xmlchecker
5757
arg_updater = quote

0 commit comments

Comments
 (0)