Эх сурвалжийг харах

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 жил өмнө
parent
commit
333169d430

+ 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.
 
- 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.
  */