Add semicolon on point 15 to keep with style (#20823)

pull/30119/head
myYearOfCode 2018-10-27 02:39:28 -04:00 committed by Aditya
parent 8eb9e290b4
commit 695b3c4db1
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ Examples of Structural Patterns include:
12. **Marker pattern**: an empty interface to associate metadata with a class.
13. **Pipes and filters**: a chain of processes where the output of each process is the input of the next.
14. **Opaque pointer**: a pointer to an undeclared or private type, to hide implementation details.
15. **Proxy pattern** a class functioning as an interface to another thing.
15. **Proxy pattern**: a class functioning as an interface to another thing.
### Sources
[https://en.wikipedia.org/wiki/Structural_pattern](https://en.wikipedia.org/wiki/Structural_pattern)