diff --git a/Code/Radiometry/otbAtmosphericRadiativeTerms.cxx b/Code/Radiometry/otbAtmosphericRadiativeTerms.cxx
index 65cf214d322e8e7f81d7e1e752e4a872c79aa167..fc3c7695ab90c7c20e84724ccecfa91feac0703d 100644
--- a/Code/Radiometry/otbAtmosphericRadiativeTerms.cxx
+++ b/Code/Radiometry/otbAtmosphericRadiativeTerms.cxx
@@ -43,8 +43,8 @@ AtmosphericRadiativeTermsSingleChannel
 ::PrintSelf(std::ostream& os, itk::Indent indent) const
 {
   Superclass::PrintSelf(os,indent);
-  os << indent << "Intrinsic Atmospheric Reflectance        : " << m_IntrinsicAtmosphericReflectance << std::endl;
-  os << indent << "Atmospher Shperical Albedo               : " << m_SphericalAlbedo << std::endl;
+  os << indent << "Atmospheric Intrinsic Reflectance        : " << m_IntrinsicAtmosphericReflectance << std::endl;
+  os << indent << "Atmosphere Shperical Albedo              : " << m_SphericalAlbedo << std::endl;
   os << indent << "Total Gaseous Transmission               : " << m_TotalGaseousTransmission << std::endl;
   os << indent << "Atmospher Downward Transmittance         : " << m_DownwardTransmittance << std::endl;
   os << indent << "Atmospher Upward Transmittance           : " << m_UpwardTransmittance << std::endl;
@@ -519,15 +519,15 @@ AtmosphericRadiativeTerms
   {
     os << "Channel "<< i << " : "<< std::endl;
     //ValueType::(os,indent);
-    os << indent << "Intrinsic Atmospheric Reflectance        : " << m_Values[i]->GetIntrinsicAtmosphericReflectance() << std::endl;
-    os << indent << "Shperical Albedo of the Atmosphere       : " << m_Values[i]->GetSphericalAlbedo() << std::endl;
-    os << indent << "Total Gaseous Transmission               : " << m_Values[i]->GetTotalGaseousTransmission() << std::endl;
-    os << indent << "Downward Transmittance of the Atmospher  : " << m_Values[i]->GetDownwardTransmittance() << std::endl;
-    os << indent << "Upward Transmittance of the Atmospher    : " << m_Values[i]->GetUpwardTransmittance() << std::endl;
-    os << indent << "Upward diffuse transmittance             : " << m_Values[i]->GetUpwardDiffuseTransmittance() << std::endl;
-    os << indent << "Upward direct transmittance              : " << m_Values[i]->GetUpwardDirectTransmittance() << std::endl;
-    os << indent << "Upward diffuse transmittance for rayleigh: " << m_Values[i]->GetUpwardDiffuseTransmittanceForRayleigh() << std::endl;
-    os << indent << "Upward diffuse transmittance for aerosols: " << m_Values[i]->GetUpwardDiffuseTransmittanceForAerosol() << std::endl;
+    os << indent << "Intrinsic Atmospheric Reflectance     : " << m_Values[i]->GetIntrinsicAtmosphericReflectance() << std::endl;
+    os << indent << "Shperical Albedo of the Atmosphere    : " << m_Values[i]->GetSphericalAlbedo() << std::endl;
+    os << indent << "Total Gaseous Transmission            : " << m_Values[i]->GetTotalGaseousTransmission() << std::endl;
+    os << indent << "Atmosphere Downward Transmittance     : " << m_Values[i]->GetDownwardTransmittance() << std::endl;
+    os << indent << "Atmosphere Upward Transmittance       : " << m_Values[i]->GetUpwardTransmittance() << std::endl;
+    os << indent << "Upward Diffuse Transmittance          : " << m_Values[i]->GetUpwardDiffuseTransmittance() << std::endl;
+    os << indent << "Upward Direct Transmittance           : " << m_Values[i]->GetUpwardDirectTransmittance() << std::endl;
+    os << indent << "Rayleigh Upward Diffuse Transmittance : " << m_Values[i]->GetUpwardDiffuseTransmittanceForRayleigh() << std::endl;
+    os << indent << "Aerosols Upward Diffuse Transmittance : " << m_Values[i]->GetUpwardDiffuseTransmittanceForAerosol() << std::endl;
   }
 }