From 027bd7105e1532984e81a55bdb7a43486931b0f0 Mon Sep 17 00:00:00 2001 From: James Turner Date: Fri, 24 Apr 2020 21:51:05 +0100 Subject: [PATCH] Fix a comment typo --- src/Instrumentation/AbstractInstrument.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Instrumentation/AbstractInstrument.cxx b/src/Instrumentation/AbstractInstrument.cxx index 79ccd523e..94f0f5fed 100644 --- a/src/Instrumentation/AbstractInstrument.cxx +++ b/src/Instrumentation/AbstractInstrument.cxx @@ -35,7 +35,7 @@ void AbstractInstrument::readConfig(SGPropertyNode* config, } // the default output values are volts, but various places have been - // treating the value as a bool,, so we default to 1.0 as our minimum + // treating the value as a bool, so we default to 1.0 as our minimum // supply volts _minimumSupplyVolts = config->getDoubleValue("minimum-supply-volts", 1.0); }