From 11b9f30e0f799f5bb6741f3e7afa45eb7dc9bb6d Mon Sep 17 00:00:00 2001 From: Keith Brown <keith.brown@stfc.ac.uk> Date: Thu, 24 Apr 2014 10:40:37 +0100 Subject: [PATCH] Refs #8962 Couple of Doxygen fixes There were some doxygen warnings about undocumented parameters and nonexistant parameters. It was a mere case of a couple of uncapitalised Bs. --- Code/Mantid/Framework/DataHandling/src/LoadReflTBL.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Mantid/Framework/DataHandling/src/LoadReflTBL.cpp b/Code/Mantid/Framework/DataHandling/src/LoadReflTBL.cpp index 6e7e3d0ffcc..990b1470712 100644 --- a/Code/Mantid/Framework/DataHandling/src/LoadReflTBL.cpp +++ b/Code/Mantid/Framework/DataHandling/src/LoadReflTBL.cpp @@ -126,7 +126,7 @@ namespace Mantid /** * find pairs of qutoes and store them in a vector * @param line the line to count from - * @param quotebounds a vector<vector<size_t>> which will contain the locations of pairs of quotes + * @param quoteBounds a vector<vector<size_t>> which will contain the locations of pairs of quotes * @returns a size_t of how many pairs of quotes were in line */ size_t LoadReflTBL::findQuotePairs (std::string line, std::vector<std::vector<size_t>> & quoteBounds) const @@ -163,7 +163,7 @@ namespace Mantid * parse the CSV format if it's not a simple case of splitting 16 commas * @param line the line to parse * @param cols The vector to parse into - * @param quotebounds a vector<vector<size_t>> containing the locations of pairs of quotes + * @param quoteBounds a vector<vector<size_t>> containing the locations of pairs of quotes * @throws std::length_error if anything other than 17 columns (or 16 cell-delimiting commas) is found */ void LoadReflTBL::csvParse(std::string line, std::vector<std::string> & cols, std::vector<std::vector<size_t>> & quoteBounds) const -- GitLab