소스 검색

Add a whitespace to reachability sample code url

If there is not a whitespace, Xcode will misunderstand the whole url is 

```
https://developer.apple.com/library/ios/samplecode/reachability/)
```

instead of 

```
https://developer.apple.com/library/ios/samplecode/reachability/
```
Draveness 9 년 전
부모
커밋
333169d430
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      AFNetworking/AFNetworkReachabilityManager.h

+ 1 - 1
AFNetworking/AFNetworkReachabilityManager.h

@@ -38,7 +38,7 @@ NS_ASSUME_NONNULL_BEGIN
 
 
  Reachability can be used to determine background information about why a network operation failed, or to trigger a network operation retrying when a connection is established. It should not be used to prevent a user from initiating a network request, as it's possible that an initial request may be required to establish reachability.
  Reachability can be used to determine background information about why a network operation failed, or to trigger a network operation retrying when a connection is established. It should not be used to prevent a user from initiating a network request, as it's possible that an initial request may be required to establish reachability.
 
 
- See Apple's Reachability Sample Code (https://developer.apple.com/library/ios/samplecode/reachability/)
+ See Apple's Reachability Sample Code (https://developer.apple.com/library/ios/samplecode/reachability/ )
 
 
  @warning Instances of `AFNetworkReachabilityManager` must be started with `-startMonitoring` before reachability status can be determined.
  @warning Instances of `AFNetworkReachabilityManager` must be started with `-startMonitoring` before reachability status can be determined.
  */
  */