diff --git a/Reconstruction/Jet/JetInterface/JetInterface/IJetDecorator.h b/Reconstruction/Jet/JetInterface/JetInterface/IJetDecorator.h
index 55d4ff161a66a80775106e1259683a3910d85fa7..59c07562869c2f8e4b6bb4fe97a19189cbfe13ec 100644
--- a/Reconstruction/Jet/JetInterface/JetInterface/IJetDecorator.h
+++ b/Reconstruction/Jet/JetInterface/JetInterface/IJetDecorator.h
@@ -26,7 +26,6 @@ ASG_TOOL_INTERFACE(IJetDecorator)
 public:
 
   /// Decorate a jet collection without otherwise modifying it.
-  /// Returns 0 for success.
   virtual StatusCode decorate(const xAOD::JetContainer& jets) const = 0;
 
   /// Concrete implementation of the function inherited from IJetModifier.
diff --git a/Reconstruction/Jet/JetMomentTools/Root/JetClusterMomentsTool.cxx b/Reconstruction/Jet/JetMomentTools/Root/JetClusterMomentsTool.cxx
index 5807ef0713e81bb77cdc1946904e9295067e76f2..64682f072574e3676a382a0acbb2dd567a815c13 100644
--- a/Reconstruction/Jet/JetMomentTools/Root/JetClusterMomentsTool.cxx
+++ b/Reconstruction/Jet/JetMomentTools/Root/JetClusterMomentsTool.cxx
@@ -13,7 +13,7 @@ JetClusterMomentsTool::JetClusterMomentsTool(const std::string& name)
 
 StatusCode JetClusterMomentsTool::initialize(){
   if(m_jetContainerName.empty()){
-    ATH_MSG_ERROR("JetBadChanCorrTool needs to have its input jet container name configured!");
+    ATH_MSG_ERROR("JetClusterMomentsTool needs to have its input jet container name configured!");
     return StatusCode::FAILURE;
   }