diff --git a/modules/upscaling/include/vkcv/upscaling/BilinearUpscaling.hpp b/modules/upscaling/include/vkcv/upscaling/BilinearUpscaling.hpp
index 4f0bfea8499aaa04ce9d7503b47b08e4cd8cde26..a3f29276aa95e17e11ce2a044721d47d558dd869 100644
--- a/modules/upscaling/include/vkcv/upscaling/BilinearUpscaling.hpp
+++ b/modules/upscaling/include/vkcv/upscaling/BilinearUpscaling.hpp
@@ -23,7 +23,7 @@ namespace vkcv::upscaling {
 		explicit BilinearUpscaling(Core& core);
 
         /**
-         * Record the comands of the bilinear upscaling instance to
+         * Record the commands of the bilinear upscaling instance to
          * scale the image of the input handle to the resolution of
          * the output image handle via bilinear interpolation.
          *
diff --git a/modules/upscaling/include/vkcv/upscaling/FSR2Upscaling.hpp b/modules/upscaling/include/vkcv/upscaling/FSR2Upscaling.hpp
index f10b23ec029a88bd56e8e5fa78ebdbdd502e1e14..d8402c03c8b64a81bdb82ca142fa0ad64958eca5 100644
--- a/modules/upscaling/include/vkcv/upscaling/FSR2Upscaling.hpp
+++ b/modules/upscaling/include/vkcv/upscaling/FSR2Upscaling.hpp
@@ -174,9 +174,13 @@ namespace vkcv::upscaling {
 		void bindVelocityBuffer(const ImageHandle& velocityInput);
 		
 		/**
-		 * Record the comands of the FSR2 upscaling instance to
+		 * Record the commands of the FSR2 upscaling instance to
 		 * scale the image of the input handle to the resolution of
-		 * the output image handle via FidelityFX Super Resolution.
+		 * the output image handle via FidelityFX Super Resolution
+		 * and dispatch them.
+		 *
+		 * Beware that this method will dispatch the commands
+		 * automatically!
 		 *
 		 * @param[in] cmdStream Command stream handle to record commands
 		 * @param[in] colorInput Color input image handle
diff --git a/modules/upscaling/include/vkcv/upscaling/FSRUpscaling.hpp b/modules/upscaling/include/vkcv/upscaling/FSRUpscaling.hpp
index 5330c063f29a647e9d1a48d0d5b8e21dc2213bc2..5a4c59ef02c2f17ed017535ca79b834e7391546a 100644
--- a/modules/upscaling/include/vkcv/upscaling/FSRUpscaling.hpp
+++ b/modules/upscaling/include/vkcv/upscaling/FSRUpscaling.hpp
@@ -188,7 +188,7 @@ namespace vkcv::upscaling {
 		explicit FSRUpscaling(Core& core);
 
         /**
-         * Record the comands of the FSR upscaling instance to
+         * Record the commands of the FSR upscaling instance to
          * scale the image of the input handle to the resolution of
          * the output image handle via FidelityFX Super Resolution.
          *
diff --git a/modules/upscaling/include/vkcv/upscaling/NISUpscaling.hpp b/modules/upscaling/include/vkcv/upscaling/NISUpscaling.hpp
index 913983400808f3353adf3a1c653045345d36c6f1..62fadf8332afd78ad7cb9dbe1eadda75de35d1c3 100644
--- a/modules/upscaling/include/vkcv/upscaling/NISUpscaling.hpp
+++ b/modules/upscaling/include/vkcv/upscaling/NISUpscaling.hpp
@@ -84,7 +84,7 @@ namespace vkcv::upscaling {
 		explicit NISUpscaling(Core &core);
 		
 		/**
-         * Record the comands of the NIS upscaling instance to
+         * Record the commands of the NIS upscaling instance to
          * scale the image of the input handle to the resolution of
          * the output image handle via NVIDIA Image Scaling.
          *
diff --git a/modules/upscaling/include/vkcv/upscaling/Upscaling.hpp b/modules/upscaling/include/vkcv/upscaling/Upscaling.hpp
index 4d04746f0849615a112d04827c7af41811031116..06e35208744734f903c8a48aa6abcd9478685c1e 100644
--- a/modules/upscaling/include/vkcv/upscaling/Upscaling.hpp
+++ b/modules/upscaling/include/vkcv/upscaling/Upscaling.hpp
@@ -32,7 +32,7 @@ namespace vkcv::upscaling {
 		~Upscaling() = default;
 
         /**
-         * Record the comands of the given upscaling instance to
+         * Record the commands of the given upscaling instance to
          * scale the image of the input handle to the resolution of
          * the output image handle.
          *