Update CONTRIBUTING.md (#1574)

* Change namespace `ASDN` to `AS`
This commit is contained in:
Hanton
2019-07-10 10:55:08 -07:00
committed by Huy Nguyen
parent 18e55277dc
commit 083f081634
+3 -3
View File
@@ -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;
}
@@ -217,7 +217,7 @@ static void someFunction() {
- (CGFloat)contentSpacing
{
ASDN::MutexLocker l(__instanceLock__);
AS::MutexLocker l(__instanceLock__);
return _contentSpacing;
}
```