diff --git a/classes/misc/Coefficient.m b/classes/misc/Coefficient.m
index a896b4132ddf6c37a3b8eedf7915accc5099bb17..f48b71dcd01d42776ebc62529a411bb3ff7e902a 100644
--- a/classes/misc/Coefficient.m
+++ b/classes/misc/Coefficient.m
@@ -1,5 +1,5 @@
 classdef Coefficient
-    % Motor: Manages the coefficients associated with a rocket
+    % Coefficient: Manages the coefficients associated with a rocket
     %
     %   Constructor:
     %       - Coefficient: Creates an instance of the Coefficient class.
@@ -56,10 +56,10 @@ classdef Coefficient
     end
 
     properties(Access = private)
-        STATIC
-        DYNAMIC
-        GEOMETRY                    % Cached variable for geometry
-        STATE                       % Cached variable for state
+        STATIC                              % Cached variable for static coefficients
+        DYNAMIC                             % Cached variable for dynamic derivatives
+        GEOMETRY                            % Cached variable for geometry
+        STATE                               % Cached variable for state
     end
 
     properties(Access = private)