diff --git a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentActor.cpp b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentActor.cpp
index dc673e8ce45a598d013ea3a52a976bc76b03df00..84dff5ac828eb2cde15d85d317f994b525b41027 100644
--- a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentActor.cpp
+++ b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentActor.cpp
@@ -156,6 +156,7 @@ InstrumentActor::~InstrumentActor()
  * When selecting a component in the InstrumentTreeWidget
  *
  * @param visitor
+ * @param rule
  * @return
  */
 bool InstrumentActor::accept(GLActorVisitor& visitor, VisitorAcceptRule rule)
diff --git a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentWindowRenderTab.cpp b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentWindowRenderTab.cpp
index 2b6fbb146fa56af34884b018d2d2401db9a0d353..abbf0bbe074a5099f9738e4ba554a3bbdd1afaad 100644
--- a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentWindowRenderTab.cpp
+++ b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentWindowRenderTab.cpp
@@ -573,7 +573,7 @@ void InstrumentWindowRenderTab::setSurfaceType(int index)
 
 /**
   * Respond to surface change from script.
-  * @param typeIndex :: Index selected in the surface type combo box.
+  * @param index :: Index selected in the surface type combo box.
   */
 void InstrumentWindowRenderTab::surfaceTypeChanged(int index)
 {
diff --git a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/PanelsSurface.cpp b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/PanelsSurface.cpp
index ef673d997365f27e0b123d9117924b2538a44bbb..448538a17eb94a633892d6f06b6e32c4ceba39d2 100644
--- a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/PanelsSurface.cpp
+++ b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/PanelsSurface.cpp
@@ -278,7 +278,7 @@ void PanelsSurface::addFlatBank(ComponentID bankId, const Mantid::Kernel::V3D &n
   * Add a flat bank from an assembly of detectors.
   * @param bankId :: Component ID of the bank.
   * @param normal :: Normal vector to the bank's plane.
-  * @param objCompAssemblies :: List of component IDs. Each component must cast to Detector.
+  * @param detectors :: List of component IDs. Each component must cast to Detector.
   */
 void PanelsSurface::addFlatBankOfDetectors(ComponentID bankId, const Mantid::Kernel::V3D &normal, QList<ComponentID> detectors)
 {
diff --git a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/ProjectionSurface.cpp b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/ProjectionSurface.cpp
index 5c60098a301fb176ffe9c5114afa49a7eaf61040..1cb76b2b1f605caf1cbb542644839ff1a9e2ba69 100644
--- a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/ProjectionSurface.cpp
+++ b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/ProjectionSurface.cpp
@@ -26,8 +26,6 @@ using Mantid::Kernel::V3D;
 /**
   * The constructor.
   * @param rootActor :: The instrument actor containning all info about the instrument
-  * @param origin :: Defines the origin of the projection reference system (if applicable)
-  * @param axis :: 
   */
 ProjectionSurface::ProjectionSurface(const InstrumentActor* rootActor):
     m_instrActor(rootActor),
diff --git a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/RectangularDetectorActor.cpp b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/RectangularDetectorActor.cpp
index 1d408bd17c1654761815f2545542f6fc5df1c8eb..890f45e31da16dc99c734397afe3dfed8f8c831e 100644
--- a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/RectangularDetectorActor.cpp
+++ b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/RectangularDetectorActor.cpp
@@ -131,6 +131,7 @@ void RectangularDetectorActor::draw(bool picking)const
  * detector, and sets the visibility of the whole panel to true if so.
  *
  * @param visitor :: A visitor.
+ * @param rule :: A rule.
  *
  */
 bool RectangularDetectorActor::accept(GLActorVisitor& visitor, VisitorAcceptRule)
diff --git a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/UnwrappedSurface.cpp b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/UnwrappedSurface.cpp
index c5a7b27f0c434799c8d31049b576e1ed396c961b..6ca32c4b8fb59d673a61ba06dce3283ec6419091 100644
--- a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/UnwrappedSurface.cpp
+++ b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/UnwrappedSurface.cpp
@@ -730,8 +730,6 @@ void UnwrappedSurface::calcUV(UnwrappedDetector& udet, Mantid::Kernel::V3D & pos
 /** Calculate the size of the detector in U/V
  *
  * @param udet
- * @param X
- * @param Y
  */
 void UnwrappedSurface::calcSize(UnwrappedDetector& udet)
 {
diff --git a/Code/Mantid/MantidPlot/src/Mantid/MantidDock.cpp b/Code/Mantid/MantidPlot/src/Mantid/MantidDock.cpp
index c07505b05f31c557e80d3ecda68487088111024c..d67b60c73506038062a79fc184e7f604e240325e 100644
--- a/Code/Mantid/MantidPlot/src/Mantid/MantidDock.cpp
+++ b/Code/Mantid/MantidPlot/src/Mantid/MantidDock.cpp
@@ -408,7 +408,7 @@ void MantidDockWidget::setTreeUpdating(const bool state)
 /**
  * Clears the tree and re-populates it with the given top level items
  * @param topLevelItems The map of names to workspaces
- * @param expandedItems Names of items who should expanded after being populated
+ * @param expanded Names of items who should expanded after being populated
  */
 void MantidDockWidget::populateTopLevel(const std::map<std::string,Mantid::API::Workspace_sptr> & topLevelItems,
                                         const QStringList & expanded)
diff --git a/Code/Mantid/MantidPlot/src/Mantid/MantidUI.cpp b/Code/Mantid/MantidPlot/src/Mantid/MantidUI.cpp
index 8e2d85154a9f9c3b19374b6d1c093ff6d66325e0..160daefdc21a47c6e3ddee7e680a409d21492151 100644
--- a/Code/Mantid/MantidPlot/src/Mantid/MantidUI.cpp
+++ b/Code/Mantid/MantidPlot/src/Mantid/MantidUI.cpp
@@ -2365,7 +2365,7 @@ void MantidUI::importString(const QString &logName, const QString &data)
 *  @param logName :: the title of the table is based on this
 *  @param data :: the string to display
 *  @param sep :: the seperator character
-*  @param caption :: the caption to appear on the table window title bar, defualts to logname if left blank
+*  @param wsName :: the caption to appear on the table window title bar, defaults to logname if left blank
 */
 void MantidUI::importString(const QString &logName, const QString &data, const QString &sep, const QString &wsName)
 {
@@ -2400,7 +2400,7 @@ void MantidUI::importString(const QString &logName, const QString &data, const Q
 /** Displays a string in a Qtiplot table
 *  @param logName :: the title of the table is based on this
 *  @param data :: a formated string with the time series data to display
-*  @param caption :: the caption to appear on the table window title bar, defualts to logname if left blank
+*  @param wsName :: the caption to appear on the table window title bar, defualts to logname if left blank
 */
 void MantidUI::importStrSeriesLog(const QString &logName, const QString &data, const QString &wsName)
 {
@@ -2451,7 +2451,6 @@ void MantidUI::importStrSeriesLog(const QString &logName, const QString &data, c
 * - 1 filter by running status
 * - 2 filter by period
 * - 3 filter by status & period
-* @param caption :: the caption to appear on the table window title bar, defualts to logname if left blank
 */
 void MantidUI::importNumSeriesLog(const QString &wsName, const QString &logName, int filter)
 {
@@ -3003,7 +3002,7 @@ void MantidUI::setUpBinGraph(MultiLayer* ml, const QString& Name, Mantid::API::M
 
 /**
 Plots the spectra from the given workspaces
-@param ws_name :: List of ws names to plot
+@param ws_names :: List of ws names to plot
 @param spec_list :: List of spectra indices to plot for each workspace
 @param errs :: If true include the errors on the graph
 @param style :: Curve style for plot
diff --git a/Code/Mantid/MantidQt/API/src/HelpWindow.cpp b/Code/Mantid/MantidQt/API/src/HelpWindow.cpp
index c9f880a8fe5514304dcf38620244a2f7e904d568..d698bfe1dbd519af5d641923284c6b52f89fc960 100644
--- a/Code/Mantid/MantidQt/API/src/HelpWindow.cpp
+++ b/Code/Mantid/MantidQt/API/src/HelpWindow.cpp
@@ -27,7 +27,7 @@ const string WIKI_BASE_URL("http://mantidproject.org/");
 const string WIKI_DEFAULT_URL(WIKI_BASE_URL + "MantidPlot");
 
 /**
- * Default constructor shows the \link MantidQt::API::DEFAULT_URL.
+ * Default constructor shows the @link MantidQt::API::DEFAULT_URL @endlink.
  */
 HelpWindowImpl::HelpWindowImpl() :
     m_collectionFile(""),
@@ -69,7 +69,7 @@ void HelpWindowImpl::openWebpage(const string &url)
  * Have the help window show a specific url. If the url doesn't exist
  * this just pops up the default view for the help.
  *
- * \param url The url to open. This should start with \link MantidQt::API::BASE_URL.
+ * @param url The url to open. This should start with @link MantidQt::API::BASE_URL @endlink.
  * If it is empty show the default page.
  */
 void HelpWindowImpl::showURL(const string &url)
@@ -139,7 +139,7 @@ void HelpWindowImpl::showAlgorithm(const string &name, const int version)
 }
 
 /**
- * Convenience method for \link HelpWindowImpl::showAlgorithm(string, int).
+ * Convenience method for @link HelpWindowImpl::showAlgorithm(const string &, const int) @endlink.
  *
  * @param name The name of the algorithm to show. If this is empty show
  * the algorithm index.
diff --git a/Code/Mantid/MantidQt/API/src/InterfaceFactory.cpp b/Code/Mantid/MantidQt/API/src/InterfaceFactory.cpp
index e6034dad4d7fed6e2be681336e89bae4addebc81..c8c2747c97beb6a59e056700c799f8313d660e70 100644
--- a/Code/Mantid/MantidQt/API/src/InterfaceFactory.cpp
+++ b/Code/Mantid/MantidQt/API/src/InterfaceFactory.cpp
@@ -46,7 +46,7 @@ UserSubWindow * UserSubWindowFactoryImpl::createUnwrapped(const std::string & na
 /**
  * Return the set of categories that the interface with the given name belongs to.
  *
- * @param name :: The name of the interface.
+ * @param interfaceName :: The name of the interface.
  * @returns the set of category names if an interface with the given name has been registered,
  *          else an empty set.
  */
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/ConvFit.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/ConvFit.cpp
index 120c7bfd87ec933268daa2a7e3e8fec38b7c5ffb..89106c7fb6c2d81f72e09e10cad23bbd4860b536 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/ConvFit.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/ConvFit.cpp
@@ -353,7 +353,7 @@ namespace IDA
    *          +-- Lorentzian 1 (yes/no)
    *          +-- Lorentzian 2 (yes/no)
    *
-   * @param tie :: whether to tie centres of the two lorentzians.
+   * @param tieCentres :: whether to tie centres of the two lorentzians.
    *
    * @returns the composite fitting function.
    */
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/IDATab.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/IDATab.cpp
index 709e56dbf80fce2ac59b3590a7333da614b3a115..c98fc01c36684f0b7ab9443410061edcc9c4d40e 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/IDATab.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/IDATab.cpp
@@ -136,7 +136,7 @@ namespace IDA
    * @param plot      :: the QwtPlot object
    * @param curve     :: the QwtPlotCurve object
    * @param workspace :: A pointer to the workspace to use
-   * @param wsIndex   :: the workspace index
+   * @param index   :: the workspace index
    *
    * @returns the resulting QwtPlotCurve object
    */
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectBayesTab.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectBayesTab.cpp
index 5252f62ad29bf4599fceaef8736b0674b573932a..70630fca78e05b4d1ee293347a3043e4124914d7 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectBayesTab.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectBayesTab.cpp
@@ -78,7 +78,7 @@ namespace MantidQt
      * a specturm index.
      * 
      * @param workspace :: Pointer to the workspace
-     * @param index :: The spectrum index of the workspace
+     * @param wsIndex :: The spectrum index of the workspace
      */
     void IndirectBayesTab::plotMiniPlot(const Mantid::API::MatrixWorkspace_const_sptr & workspace, size_t wsIndex)
     {
@@ -131,7 +131,7 @@ namespace MantidQt
      * Checks the workspace's intrument for a resolution parameter to use as 
      * a default for the energy range on the mini plot
      *
-     * @param workspace :: Pointer to the workspace to use
+     * @param ws :: Pointer to the workspace to use
      * @param res :: The retrieved values for the resolution parameter (if one was found)
      */
     bool IndirectBayesTab::getInstrumentResolution(Mantid::API::MatrixWorkspace_const_sptr ws, std::pair<double,double>& res)
@@ -158,7 +158,7 @@ namespace MantidQt
     /**
      * Gets the range of the curve plotted in the mini plot
      *
-     * @param A pair containing the maximum and minimum points of the curve
+     * @return A pair containing the maximum and minimum points of the curve
      */
     std::pair<double,double> IndirectBayesTab::getCurveRange()
     {
@@ -245,7 +245,7 @@ namespace MantidQt
      * Checks if a file is present in the ADS and if not attempts to load it.
      * 
      * @param filename :: name of the file that should be loaded
-     * @param errorMsg :: error message to display if the file couldn't be found.
+     * @param filepath :: path to the file
      */
     bool IndirectBayesTab::checkFileLoaded(const QString& filename, const QString& filepath)
     {
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectNeutron.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectNeutron.cpp
index 2cc8013815165b128657560ec97f17f1a48e6657..a47e86529357439fb15f21f3176511c553256271 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectNeutron.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectNeutron.cpp
@@ -237,7 +237,7 @@ namespace MantidQt
 		 * Set the instrument selected in the combobox based on
 		 * the file name of the run is possible.
 		 *
-		 * Assumes that names have the form <instrument>_<run-number>.<ext>
+     * Assumes that names have the form \<instrument\>_\<run-number\>.\<ext\>
 		 */
     void IndirectNeutron::handleFilesFound()
     {
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/JumpFit.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/JumpFit.cpp
index 6feee8811f08172eacfb5113c66b267857ef9af9..39c838dd4652771b7456fa2b0d9662343b08c76b 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/JumpFit.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/JumpFit.cpp
@@ -99,7 +99,7 @@ namespace MantidQt
 		 * Set the data selectors to use the default save directory
 		 * when browsing for input files.
 		 *  
-		 * @param filename :: The name of the workspace to plot
+     * @param settings :: current settings
 		 */
 		void JumpFit::loadSettings(const QSettings& settings)
 		{
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/MantidEVWorker.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/MantidEVWorker.cpp
index 8737344d93847e7faf763665802ccb257b85abda..7a84b8a267d9674a1b878b81332dc4f1742ad9c1 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/MantidEVWorker.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/MantidEVWorker.cpp
@@ -138,12 +138,15 @@ bool MantidEVWorker::isEventWorkspace( const std::string & event_ws_name )
  *  @param file_name        Name of the NeXus file to load
  *  @param ev_ws_name       Name of the event workspace to create
  *  @param md_ws_name       Name of the MD workspace to create
+ *  @param minQ             The smallest absolute value of any component
+ *                          of Q to include. When ConvertToMD is called,
  *  @param maxQ             The largest absolute value of any component
  *                          of Q to include. When ConvertToMD is called,
  *                          MinValues = -maxQ,-maxQ,-maxQ   and 
  *                          MaxValues =  maxQ, maxQ, maxQ 
  *  @param do_lorentz_corr  Set true to do the Lorentz correction when
  *                          converting to reciprocal space. 
+ *  @param load_data        Set true to load data.
  *  @param load_det_cal     Set true to call LoadIsawDetCal after loading
  *                          the event file.
  *  @param det_cal_file     Fully qualified name of the .DetCal file.
@@ -377,6 +380,7 @@ bool MantidEVWorker::findUBUsingFFT( const std::string & peaks_ws_name,
  *  peaks workspace.
  * 
  *  @param peaks_ws_name   The name of the peaks workspace.
+ *  @param tolerance       Tolerance for the peak finding.
  *
  *  @return true if FindUBusingIndexedPeaks completed successfully.
  */
@@ -661,6 +665,11 @@ bool MantidEVWorker::changeHKL(  const std::string & peaks_ws_name,
  *                         region.
  *  @param integrate_edge  If true, integrate peaks for which the sphere
  *                         goes off the edge of the detector.
+ *  @param use_cylinder_integration  Set true to use cylinder integration
+ *  @param cylinder_length Set the cylinder length
+ *  @param cylinder_percent_bkg      Percentage background to use in the
+ *                                   cylinder
+ *  @param cylinder_profile_fit      String to some use.
  *
  *  @return true if the unweighted workspace was successfully created and
  *          integrated using IntegratePeaksMD.
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysis.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysis.cpp
index c187824512f4aae1b82e7682ec9347a01c27a12e..1879df04a5183bfabfe1086dbb569624044edad1 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysis.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysis.cpp
@@ -2049,7 +2049,7 @@ void MuonAnalysis::updateFrontAndCombo()
 
 /**
  * Updates widgets related to period algebra
- * @param newNumPeriods Number of periods available
+ * @param numPeriods Number of periods available
  */
 void MuonAnalysis::updatePeriodWidgets(int numPeriods)
 {
@@ -2177,6 +2177,7 @@ QStringList MuonAnalysis::getPeriodLabels() const
  * plots specific WS spectrum (used by plotPair and plotGroup)
  * @param wsName workspace name
  * @param wsIndex workspace index
+ * @param ylogscale use log scaling on y
  */
 void MuonAnalysis::plotSpectrum(const QString& wsName, const int wsIndex, const bool ylogscale)
 {
@@ -3172,7 +3173,7 @@ void MuonAnalysis::getFullCode(int originalSize, QString & run)
 /**
  * Is called every time when tab gets changed
  *
- * @param tabNumber The index value of the current tab
+ * @param newTabNumber The index value of the current tab
  */
 void MuonAnalysis::changeTab(int newTabNumber)
 {
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysisOptionTab.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysisOptionTab.cpp
index 59031c813ef35781e259c49dd9d53ffbb0c3f598..73aac8086f961daae26e1bbe98049f5c9cc79392 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysisOptionTab.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysisOptionTab.cpp
@@ -496,8 +496,6 @@ void MuonAnalysisOptionTab::storeCustomTimeValue()
  *   - ShowErrors: True of False
  *   - YAxisAuto: True or False
  *   - YAxisMin/YAxisMax: Double values
- *
- * @param workspace :: The workspace name of the plot to be created.
  */
 QMap<QString, QString> MuonAnalysisOptionTab::parsePlotStyleParams() const
 {
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/Quasi.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/Quasi.cpp
index 9f4e381d5efac21910b4de7c98b6eff887425011..21b36309a27c69be1c9dc96f91f9faadf0ac546f 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/Quasi.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/Quasi.cpp
@@ -48,7 +48,7 @@ namespace MantidQt
 		 * Set the data selectors to use the default save directory
 		 * when browsing for input files.
 		 *  
-		 * @param filename :: The name of the workspace to plot
+     * @param settings :: current settings
 		 */
 		void Quasi::loadSettings(const QSettings& settings)
 		{
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/ResNorm.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/ResNorm.cpp
index 96e775bbd984cfd82836787340da5a0a33e4d35a..81fd95db93f125da033b40a0211c2faf7a6cf10c 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/ResNorm.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/ResNorm.cpp
@@ -94,7 +94,7 @@ namespace MantidQt
 		 * Set the data selectors to use the default save directory
 		 * when browsing for input files.
 		 *  
-		 * @param filename :: The name of the workspace to plot
+     * @param settings :: The current settings
 		 */
 		void ResNorm::loadSettings(const QSettings& settings)
 		{
diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/Stretch.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/Stretch.cpp
index a93294dd37a2f96b6d2d1914e169440dbb449b68..c6e912f9784a5e19945881f328baa967f2408cf0 100644
--- a/Code/Mantid/MantidQt/CustomInterfaces/src/Stretch.cpp
+++ b/Code/Mantid/MantidQt/CustomInterfaces/src/Stretch.cpp
@@ -121,7 +121,7 @@ namespace MantidQt
 		 * Set the data selectors to use the default save directory
 		 * when browsing for input files.
 		 *  
-		 * @param filename :: The name of the workspace to plot
+     * @param settings :: The current settings
 		 */
 		void Stretch::loadSettings(const QSettings& settings)
 		{
diff --git a/Code/Mantid/MantidQt/MantidWidgets/src/FitPropertyBrowser.cpp b/Code/Mantid/MantidQt/MantidWidgets/src/FitPropertyBrowser.cpp
index b4d4d4892cc91ec5fd77b199155b8ce6af8ef8a7..81902bf518a731396014a8bcb06b22116453900d 100644
--- a/Code/Mantid/MantidQt/MantidWidgets/src/FitPropertyBrowser.cpp
+++ b/Code/Mantid/MantidQt/MantidWidgets/src/FitPropertyBrowser.cpp
@@ -2253,6 +2253,7 @@ void FitPropertyBrowser::clearAllPlots()
 
 /** Create a double property and set some settings
  * @param name :: The name of the new property
+ * @param manager :: The property manager
  * @return Pointer to the created property
  */
 QtProperty* FitPropertyBrowser::addDoubleProperty(const QString& name, QtDoublePropertyManager *manager)const
diff --git a/Code/Mantid/MantidQt/MantidWidgets/src/FunctionBrowser.cpp b/Code/Mantid/MantidQt/MantidWidgets/src/FunctionBrowser.cpp
index 96720714f4adf6f0c70b03a4f6437f2b9f790dd1..1525e737e8f0a59aa0523014568984d34c347637 100644
--- a/Code/Mantid/MantidQt/MantidWidgets/src/FunctionBrowser.cpp
+++ b/Code/Mantid/MantidQt/MantidWidgets/src/FunctionBrowser.cpp
@@ -1264,6 +1264,7 @@ void FunctionBrowser::addFunction()
 /**
  * Return the function 
  * @param prop :: Function property 
+ * @param attributesOnly :: Get only attributes
  */
 Mantid::API::IFunction_sptr FunctionBrowser::getFunction(QtProperty* prop, bool attributesOnly)
 {
diff --git a/Code/Mantid/MantidQt/SliceViewer/src/LineViewer.cpp b/Code/Mantid/MantidQt/SliceViewer/src/LineViewer.cpp
index 3ab77e1ac0a80e3c24a22f484467b4ae1ef3f4ab..c72ea7df7b8256cb4373fa39433bed9386a81fb7 100644
--- a/Code/Mantid/MantidQt/SliceViewer/src/LineViewer.cpp
+++ b/Code/Mantid/MantidQt/SliceViewer/src/LineViewer.cpp
@@ -947,8 +947,8 @@ int LineViewer::getPlotAxis() const
 
 /**
  * Helper method to get the positive min value.
- * @param curveDat : CurveData to look through the data of.
- * @param to : Start value
+ * @param curveData : CurveData to look through the data of.
+ * @param from : Start value
  * @return : Positive min value.
  */
 double getPositiveMin(const MantidQwtWorkspaceData& curveData, const double from)
diff --git a/Code/Mantid/MantidQt/SliceViewer/src/PeaksWorkspaceWidget.cpp b/Code/Mantid/MantidQt/SliceViewer/src/PeaksWorkspaceWidget.cpp
index e4fd5c4de86aaf1dc89d3b6995257202c927cc4c..4ae39afc1aece470cdc590e412eb89aba670604e 100644
--- a/Code/Mantid/MantidQt/SliceViewer/src/PeaksWorkspaceWidget.cpp
+++ b/Code/Mantid/MantidQt/SliceViewer/src/PeaksWorkspaceWidget.cpp
@@ -167,7 +167,6 @@ namespace MantidQt
 
     /**
     Handler to hide/show the widget on request.
-    @param hidden: flag indicating what to do.
     */
     void PeaksWorkspaceWidget::onToggleHideInPlot()
     {
diff --git a/Code/Mantid/MantidQt/SpectrumViewer/src/SpectrumView.cpp b/Code/Mantid/MantidQt/SpectrumViewer/src/SpectrumView.cpp
index 4057829afe05049d8e8be28b610df447cddabf91..48378c405fb455ff8bfdfa192a639e51284792eb 100644
--- a/Code/Mantid/MantidQt/SpectrumViewer/src/SpectrumView.cpp
+++ b/Code/Mantid/MantidQt/SpectrumViewer/src/SpectrumView.cpp
@@ -25,7 +25,7 @@ namespace SpectrumView
  *  parts of the SpectrumView are constructed here and are deleted when the
  *  SpectrumView destructor is called.
  *
- *  @param data_source  The source of the data that will be displayed. 
+ *  @param parent :: The parent widget.
  */
 SpectrumView::SpectrumView(QWidget *parent) :
   QMainWindow(parent, 0),