Fix for OS inclusive language
diff --git a/Source/GTMHTTPFetcher.m b/Source/GTMHTTPFetcher.m
index 004dc4f..cc4ff11 100644
--- a/Source/GTMHTTPFetcher.m
+++ b/Source/GTMHTTPFetcher.m
@@ -311,7 +311,7 @@
     //
     // file: and data: schemes are usually safe if they are hardcoded in the client or provided
     // by a trusted source, but since it's fairly rare to need them, it's safest to make clients
-    // explicitly whitelist them.
+    // explicitly allow them.
     NSString *requestScheme = [requestURL scheme];
     BOOL isSecure = ([requestScheme caseInsensitiveCompare:@"https"] == NSOrderedSame);
     if (!isSecure) {