From 3a60b58a7f8796576ea7d39907c22b046247f9ac Mon Sep 17 00:00:00 2001 From: Hugo Oliveira Date: Tue, 23 Feb 2021 18:43:35 +1100 Subject: [PATCH] fix(Util): missing semicolon in readMappings. --- Util/readMappings.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Util/readMappings.m b/Util/readMappings.m index c6449e004..a1ce6d2aa 100644 --- a/Util/readMappings.m +++ b/Util/readMappings.m @@ -21,7 +21,7 @@ % Example: % % file = [toolboxRootPath 'GUI/instrumentAliases.txt']; -% [mappings] = readMappings(file) +% [mappings] = readMappings(file); % assert(mappings.Count>0) % keys = mappings.keys; % values = mappings.values;