diff --git a/Framework/Kernel/inc/MantidKernel/PropertyHelper.h b/Framework/Kernel/inc/MantidKernel/PropertyHelper.h
index de6d926804a9ae9a06789c6b23f8e1df38fb41af..7a452e4bf6f2f318aebb944264d7ad5d2b576b8a 100644
--- a/Framework/Kernel/inc/MantidKernel/PropertyHelper.h
+++ b/Framework/Kernel/inc/MantidKernel/PropertyHelper.h
@@ -54,7 +54,8 @@ toString(const std::vector<T> &value, const std::string &delimiter = ",",
          const std::string &listDelimiter = "-",
          typename std::enable_if<std::is_integral<T>::value &&
                                  std::is_arithmetic<T>::value>::type * = 0) {
-  return Strings::joinCompress(value.begin(), value.end(), delimiter, listDelimiter);
+  return Strings::joinCompress(value.begin(), value.end(), delimiter,
+                               listDelimiter);
 }
 
 /** Explicit specialization for a property of type std::vector<bool>.
@@ -63,7 +64,7 @@ toString(const std::vector<T> &value, const std::string &delimiter = ",",
 */
 template <>
 std::string
-toString(const std::vector<bool> &value, const std::string &delimiter, 
+toString(const std::vector<bool> &value, const std::string &delimiter,
          const std::string &unusedDelimiter,
          typename std::enable_if<std::is_same<bool, bool>::value>::type *) {
   return Strings::join(value.begin(), value.end(), delimiter);