fixed GhidraCodingStandards

This commit is contained in:
0xflotus 2019-04-06 01:03:49 +02:00 committed by GitHub
parent 49c2010b63
commit 4dbae188d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@
<H4> The design pattern of an interface with one or more implementations should use the following naming conventions:</H4>
<UL>
<LI> Foo - The interface should be named the fundamental thing. </LI>
<LI> AbstractFoo - An abstract implementation intended to be used as the base of a hierachy of classes. </LI>
<LI> AbstractFoo - An abstract implementation intended to be used as the base of a hierarchy of classes. </LI>
<LI> DefaultFoo - A "default" implementation that would be appropriate for the majority of use cases. </LI>
<LI> {descriptive}Foo - Other implementations should describe what makes them unique. </LI>
</UL>