Skip to content

Commit

Permalink
Update CONTRIBUTING.md (TextureGroup#1574)
Browse files Browse the repository at this point in the history
* Change namespace `ASDN` to `AS`
  • Loading branch information
hanton authored and nguyenhuy committed Jul 10, 2019
1 parent 18e5527 commit 083f081
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,12 @@ static void someFunction() {
return contentSpacing;
}
```
2. Create an `ASDN::MutexLocker` :
2. Create an `AS::MutexLocker` :
```objc
- (void)setContentSpacing:(CGFloat)contentSpacing
{
{
ASDN::MutexLocker l(__instanceLock__);
AS::MutexLocker l(__instanceLock__);
if (contentSpacing == _contentSpacing) {
return;
}
Expand All @@ -217,7 +217,7 @@ static void someFunction() {

- (CGFloat)contentSpacing
{
ASDN::MutexLocker l(__instanceLock__);
AS::MutexLocker l(__instanceLock__);
return _contentSpacing;
}
```
Expand Down

0 comments on commit 083f081

Please sign in to comment.