Skip to content

Conversation

@kv-prajapati
Copy link
Contributor

Use the word 'class' in place of 'module'

Summary

Describe your changes here.

Fixes #Issue_Number (if available)

Use the word 'class' in place of 'module'
### Dependency inversion

The direction of dependency within the application should be in the direction of abstraction, not implementation details. Most applications are written such that compile-time dependency flows in the direction of runtime execution, producing a direct dependency graph. That is, if module A calls a function in module B, which calls a function in module C, then at compile time A will depend on B, which will depend on C, as shown in Figure 4-1.
The direction of dependency within the application should be in the direction of abstraction, not implementation details. Most applications are written such that compile-time dependency flows in the direction of runtime execution, producing a direct dependency graph. That is, if class A calls a method of class B and class B calls a method of class Ce C, then at compile time class A will depend on classB, and class B will depend on C, as shown in Figure 4-1.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove Ce and change classB to class B please.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! Done

Base automatically changed from main to master March 17, 2021 17:05
Base automatically changed from master to main March 17, 2021 17:07
…es.md

Co-authored-by: Steve Smith <steve@kentsmiths.com>
@ardalis
Copy link
Contributor

ardalis commented Mar 18, 2021

You closed this without merging it?

@kv-prajapati kv-prajapati reopened this Mar 19, 2021
@kv-prajapati
Copy link
Contributor Author

You closed this without merging it?

Sorry about that. Reopend :)

@ardalis
Copy link
Contributor

ardalis commented Mar 19, 2021

Should be good to merge, @nishanil

@IEvangelist IEvangelist merged commit e757423 into dotnet:main Mar 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants