Skip to content

Commit 72f069f

Browse files
authored
Fix coupling metrics dependency relation in comment
1 parent 60c544c commit 72f069f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/cpp_metrics/parser/src/cppmetricsparser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ bool CppMetricsParser::parse()
669669
LOG(info) << "[cppmetricsparser] Computing efferent coupling metric at module level.";
670670
efferentModuleLevel(); // This metric needs to be calculated after efferentTypeLevel
671671
LOG(info) << "[cppmetricsparser] Computing afferent coupling metric at module level.";
672-
afferentModuleLevel(); // This metric needs to be calculated after afferentTypeLevel
672+
afferentModuleLevel(); // This metric needs to be calculated after efferentTypeLevel (sic!)
673673
LOG(info) << "[cppmetricsparser] Computing relational cohesion metric at module level.";
674674
relationalCohesionModuleLevel(); // This metric needs to be calculated after efferentTypeLevel
675675
return true;

0 commit comments

Comments
 (0)