Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pattacini committed Apr 3, 2023
1 parent 5c81d11 commit 34a6703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boards/amcbldc/system/dictionaries/update_dictionary.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
p.Value.thresholds.motorOverloadCurrents = single(10);
p.Value.thresholds.motorPwmLimit = uint32(32000);

udpate_entry(section, id, p);
update_entry(section, id, p);

saveChanges(dictionary);
close(dictionary);
Expand All @@ -61,7 +61,7 @@
delete('export_dictionary.m');


function udpate_entry(section, name, val)
function update_entry(section, name, val)

entry = find(section, 'Name', name);
if isempty(entry)
Expand Down

0 comments on commit 34a6703

Please sign in to comment.