Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo LSP to ISP #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/design-patterns/design-principles-and-ideas.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SOLID 原则并非单纯的 1 个原则,而是由 5 个设计原则组成的

里式替换原则(Liskov Substitution Principle)指子类对象能够替换程序中父类对象出现的任何地方,并且保证原来程序的逻辑行为不变及正确性不被破坏。

### LSP 接口隔离原则
### ISP 接口隔离原则

接口隔离原则(Interface Segregation Principle)指接口的调用者不应该被强迫依赖它不需要的接口。

Expand Down