From 6e8fbb03b6eebf2dfd537df55f18e3ed44fe3dd5 Mon Sep 17 00:00:00 2001 From: Mickey Derks Date: Sun, 12 Nov 2017 17:08:37 +0100 Subject: [PATCH] Fix string termination. --- OOequipment/Equipment.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OOequipment/Equipment.m b/OOequipment/Equipment.m index abf20cd..bf3d0dc 100644 --- a/OOequipment/Equipment.m +++ b/OOequipment/Equipment.m @@ -149,7 +149,7 @@ classdef Equipment < handle function num = forceNum(input) if ~isnumeric(input) - error('Input should be a (single) number.); + error('Input should be a (single) number.'); end num = input; end