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

typo: abreviation -> abbreviation #2

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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ Use following comment structures to keep track of issues in code. Xcode's jumpba
* Category name and class extension's brackets should be separated from the class name with a whitespace.
* Category filenames should be constructed as ClassName+CategoryName (with plus being an actual part of the filename).
* Expossing private methods for subclasses or unit testing should be done by creating a class extension named `Class_Private.h`.
* Categories for classes from system frameworks or 3rd-party dependencies must be prefixed with the abreviation of the project followed by underscore to avoid runtime collisions with hidden methods. Also, category names with 2 or 3 character abbreviation of your project. For instance:
* Categories for classes from system frameworks or 3rd-party dependencies must be prefixed with the abbreviation of the project followed by underscore to avoid runtime collisions with hidden methods. Also, category names with 2 or 3 character abbreviation of your project. For instance:
```objc
@interface UIImage (DBResize)

Expand Down