diff --git a/Batch-Compliance/java/src/main/java/CreateJob.java b/Batch-Compliance/java/src/main/java/CreateJob.java index e9d7b8d..644b156 100644 --- a/Batch-Compliance/java/src/main/java/CreateJob.java +++ b/Batch-Compliance/java/src/main/java/CreateJob.java @@ -15,7 +15,7 @@ * */ public class CreateJob { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException { diff --git a/Batch-Compliance/java/src/main/java/GetJobById.java b/Batch-Compliance/java/src/main/java/GetJobById.java index ce8f131..4688aa3 100644 --- a/Batch-Compliance/java/src/main/java/GetJobById.java +++ b/Batch-Compliance/java/src/main/java/GetJobById.java @@ -16,7 +16,7 @@ * */ public class GetJobById { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Batch-Compliance/java/src/main/java/GetJobs.java b/Batch-Compliance/java/src/main/java/GetJobs.java index 1b5b9ad..5babaed 100644 --- a/Batch-Compliance/java/src/main/java/GetJobs.java +++ b/Batch-Compliance/java/src/main/java/GetJobs.java @@ -19,7 +19,7 @@ * */ public class GetJobs { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Blocks-Lookup/lookup_blocks.py b/Blocks-Lookup/lookup_blocks.py index 84a2ba3..0e3c485 100644 --- a/Blocks-Lookup/lookup_blocks.py +++ b/Blocks-Lookup/lookup_blocks.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'CONSUMER_KEY'='' # export 'CONSUMER_SECRET'='' diff --git a/Bookmarks-lookup/bookmarks_lookup.py b/Bookmarks-lookup/bookmarks_lookup.py index 4cb2dae..58be5fb 100644 --- a/Bookmarks-lookup/bookmarks_lookup.py +++ b/Bookmarks-lookup/bookmarks_lookup.py @@ -8,14 +8,14 @@ from requests_oauthlib import OAuth2Session # First, you will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_ID='your-client-id' client_id = os.environ.get("CLIENT_ID") # If you have selected a type of App that is a confidential client you will need to set a client secret. # Confidential Clients securely authenticate with the authorization server. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_SECRET='your-client-secret' # Remove the comment on the following line if you are using a confidential client diff --git a/Bookmarks-lookup/bookmarks_lookup.rb b/Bookmarks-lookup/bookmarks_lookup.rb index 89fc4cf..1f5229a 100644 --- a/Bookmarks-lookup/bookmarks_lookup.rb +++ b/Bookmarks-lookup/bookmarks_lookup.rb @@ -3,14 +3,14 @@ require 'twitter_oauth2' # First, you will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_ID='your-client-id' client_id = ENV["CLIENT_ID"] # If you have selected a type of App that is a confidential client you will need to set a client secret. # Confidential Clients securely authenticate with the authorization server. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_SECRET='your-client-secret' # Remove the comment on the following line if you are using a confidential client diff --git a/Filtered-Stream/FilteredStreamDemo.java b/Filtered-Stream/FilteredStreamDemo.java index ea23fb1..34ed42a 100644 --- a/Filtered-Stream/FilteredStreamDemo.java +++ b/Filtered-Stream/FilteredStreamDemo.java @@ -20,7 +20,7 @@ * Sample code to demonstrate the use of the Filtered Stream endpoint * */ public class FilteredStreamDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Filtered-Stream/filtered_stream.py b/Filtered-Stream/filtered_stream.py index 346ca32..c1fa3bd 100644 --- a/Filtered-Stream/filtered_stream.py +++ b/Filtered-Stream/filtered_stream.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/Full-Archive-Search/FullArchiveSearchDemo.java b/Full-Archive-Search/FullArchiveSearchDemo.java index 90b9b32..e4e919f 100644 --- a/Full-Archive-Search/FullArchiveSearchDemo.java +++ b/Full-Archive-Search/FullArchiveSearchDemo.java @@ -19,7 +19,7 @@ * */ public class FullArchiveSearchDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Full-Archive-Tweet-Counts/FullArchiveTweetCountsDemo.java b/Full-Archive-Tweet-Counts/FullArchiveTweetCountsDemo.java index 0c62c8b..f41270a 100644 --- a/Full-Archive-Tweet-Counts/FullArchiveTweetCountsDemo.java +++ b/Full-Archive-Tweet-Counts/FullArchiveTweetCountsDemo.java @@ -19,7 +19,7 @@ * */ public class FullArchiveTweetCountsDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Likes-Lookup/liked_tweets.py b/Likes-Lookup/liked_tweets.py index 5b05cc2..ae0d8c0 100644 --- a/Likes-Lookup/liked_tweets.py +++ b/Likes-Lookup/liked_tweets.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/Likes-Lookup/liking_users.py b/Likes-Lookup/liking_users.py index 01079d5..d1927b7 100644 --- a/Likes-Lookup/liking_users.py +++ b/Likes-Lookup/liking_users.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/List-lookup/List-Tweets-lookup/List-Tweets.py b/List-lookup/List-Tweets-lookup/List-Tweets.py index 847d917..c7eaf36 100644 --- a/List-lookup/List-Tweets-lookup/List-Tweets.py +++ b/List-lookup/List-Tweets-lookup/List-Tweets.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/List-lookup/List-follows-lookup/list-followers-lookup.py b/List-lookup/List-follows-lookup/list-followers-lookup.py index db36cae..9570510 100644 --- a/List-lookup/List-follows-lookup/list-followers-lookup.py +++ b/List-lookup/List-follows-lookup/list-followers-lookup.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/List-lookup/List-follows-lookup/user-list-followed.py b/List-lookup/List-follows-lookup/user-list-followed.py index 448efb5..e8c7a89 100644 --- a/List-lookup/List-follows-lookup/user-list-followed.py +++ b/List-lookup/List-follows-lookup/user-list-followed.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/List-lookup/List-members-lookup/list-member-lookup.py b/List-lookup/List-members-lookup/list-member-lookup.py index a10fca3..a2e52b7 100644 --- a/List-lookup/List-members-lookup/list-member-lookup.py +++ b/List-lookup/List-members-lookup/list-member-lookup.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/List-lookup/List-members-lookup/user-list-memberships.py b/List-lookup/List-members-lookup/user-list-memberships.py index a8440db..2c2b711 100644 --- a/List-lookup/List-members-lookup/user-list-memberships.py +++ b/List-lookup/List-members-lookup/user-list-memberships.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/List-lookup/list-lookup-by-id.py b/List-lookup/list-lookup-by-id.py index abbee5f..db6edb5 100644 --- a/List-lookup/list-lookup-by-id.py +++ b/List-lookup/list-lookup-by-id.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/List-lookup/user-owned-list-lookup.py b/List-lookup/user-owned-list-lookup.py index 0b49b7b..5c51646 100644 --- a/List-lookup/user-owned-list-lookup.py +++ b/List-lookup/user-owned-list-lookup.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/Manage-Bookmarks/create_bookmark.py b/Manage-Bookmarks/create_bookmark.py index d998cd1..2e6b810 100644 --- a/Manage-Bookmarks/create_bookmark.py +++ b/Manage-Bookmarks/create_bookmark.py @@ -11,14 +11,14 @@ tweet_to_bookmark = {"tweet_id": "1460323737035677698"} # You will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_ID='your-client-id' client_id = os.environ.get("CLIENT_ID") # If you have selected a type of App that is a confidential client you will need to set a client secret. # Confidential Clients securely authenticate with the authorization server. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_SECRET='your-client-secret' # Remove the comment on the following line if you are using a confidential client diff --git a/Manage-Bookmarks/create_bookmark.rb b/Manage-Bookmarks/create_bookmark.rb index a13ed31..b9d2b5d 100644 --- a/Manage-Bookmarks/create_bookmark.rb +++ b/Manage-Bookmarks/create_bookmark.rb @@ -3,14 +3,14 @@ require 'twitter_oauth2' # First, you will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_ID='your-client-id' client_id = ENV["CLIENT_ID"] # If you have selected a type of App that is a confidential client you will need to set a client secret. # Confidential Clients securely authenticate with the authorization server. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_SECRET='your-client-secret' # Remove the comment on the following line if you are using a confidential client diff --git a/Manage-Bookmarks/delete_bookmark.py b/Manage-Bookmarks/delete_bookmark.py index 7bd2d49..96ff6b5 100644 --- a/Manage-Bookmarks/delete_bookmark.py +++ b/Manage-Bookmarks/delete_bookmark.py @@ -11,14 +11,14 @@ bookmarked_tweet_id = "1460323737035677698" # You will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_ID='your-client-id' client_id = os.environ.get("CLIENT_ID") # If you have selected a type of App that is a confidential client you will need to set a client secret. # Confidential Clients securely authenticate with the authorization server. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_SECRET='your-client-secret' # Remove the comment on the following line if you are using a confidential client diff --git a/Manage-Bookmarks/delete_bookmark.rb b/Manage-Bookmarks/delete_bookmark.rb index 77b768c..2c69937 100644 --- a/Manage-Bookmarks/delete_bookmark.rb +++ b/Manage-Bookmarks/delete_bookmark.rb @@ -3,14 +3,14 @@ require 'twitter_oauth2' # First, you will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_ID='your-client-id' client_id = ENV["CLIENT_ID"] # If you have selected a type of App that is a confidential client you will need to set a client secret. # Confidential Clients securely authenticate with the authorization server. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_SECRET='your-client-secret' # Remove the comment on the following line if you are using a confidential client diff --git a/Media Upload/media_upload_v2.py b/Media Upload/media_upload_v2.py index 0b28df2..85a31a3 100644 --- a/Media Upload/media_upload_v2.py +++ b/Media Upload/media_upload_v2.py @@ -14,14 +14,14 @@ VIDEO_FILENAME = 'REPLACE_ME' # You will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_ID='your-client-id' client_id = os.environ.get("CLIENT_ID") # If you have selected a type of App that is a confidential client you will need to set a client secret. # Confidential Clients securely authenticate with the authorization server. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_SECRET='your-client-secret' # Remove the comment on the following line if you are using a confidential client diff --git a/Mutes-Lookup/lookup_mutes.py b/Mutes-Lookup/lookup_mutes.py index 89f313c..ae44448 100644 --- a/Mutes-Lookup/lookup_mutes.py +++ b/Mutes-Lookup/lookup_mutes.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'CONSUMER_KEY'='' # export 'CONSUMER_SECRET'='' diff --git a/Recent-Search/RecentSearchDemo.java b/Recent-Search/RecentSearchDemo.java index 9072908..d949ed9 100644 --- a/Recent-Search/RecentSearchDemo.java +++ b/Recent-Search/RecentSearchDemo.java @@ -19,7 +19,7 @@ * */ public class RecentSearchDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Recent-Tweet-Counts/RecentTweetCountsDemo.java b/Recent-Tweet-Counts/RecentTweetCountsDemo.java index 09723cf..e1ac9cb 100644 --- a/Recent-Tweet-Counts/RecentTweetCountsDemo.java +++ b/Recent-Tweet-Counts/RecentTweetCountsDemo.java @@ -19,7 +19,7 @@ * */ public class RecentTweetCountsDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Retweets-Lookup/retweeted_by.py b/Retweets-Lookup/retweeted_by.py index f171bc4..76276a9 100644 --- a/Retweets-Lookup/retweeted_by.py +++ b/Retweets-Lookup/retweeted_by.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' diff --git a/Reverse-Chron-Home-Timeline/OAuth1a-user/reverse-chron-home-timeline.py b/Reverse-Chron-Home-Timeline/OAuth1a-user/reverse-chron-home-timeline.py index 6d6c5a6..4d30ffb 100644 --- a/Reverse-Chron-Home-Timeline/OAuth1a-user/reverse-chron-home-timeline.py +++ b/Reverse-Chron-Home-Timeline/OAuth1a-user/reverse-chron-home-timeline.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'CONSUMER_KEY'='' # export 'CONSUMER_SECRET'='' consumer_key = os.environ.get("CONSUMER_KEY") diff --git a/Reverse-Chron-Home-Timeline/OAuth2-user/reverse-chron-home-timeline.py b/Reverse-Chron-Home-Timeline/OAuth2-user/reverse-chron-home-timeline.py index ed6e2f8..4ebcac0 100644 --- a/Reverse-Chron-Home-Timeline/OAuth2-user/reverse-chron-home-timeline.py +++ b/Reverse-Chron-Home-Timeline/OAuth2-user/reverse-chron-home-timeline.py @@ -8,14 +8,14 @@ from requests_oauthlib import OAuth2Session # First, you will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_ID='your-client-id' client_id = os.environ.get("CLIENT_ID") # If you have selected a type of App that is a confidential client you will need to set a client secret. # Confidential Clients securely authenticate with the authorization server. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_SECRET='your-client-secret' # Remove the comment on the following line if you are using a confidential client diff --git a/Reverse-Chron-Home-Timeline/OAuth2-user/reverse-chron-home-timeline.rb b/Reverse-Chron-Home-Timeline/OAuth2-user/reverse-chron-home-timeline.rb index aeedb1a..cec6927 100644 --- a/Reverse-Chron-Home-Timeline/OAuth2-user/reverse-chron-home-timeline.rb +++ b/Reverse-Chron-Home-Timeline/OAuth2-user/reverse-chron-home-timeline.rb @@ -3,14 +3,14 @@ require 'twitter_oauth2' # First, you will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_ID='your-client-id' client_id = ENV["CLIENT_ID"] # If you have selected a type of App that is a confidential client you will need to set a client secret. # Confidential Clients securely authenticate with the authorization server. -# Inside your terminal you will need to set an enviornment variable +# Inside your terminal you will need to set an environment variable # export CLIENT_SECRET='your-client-secret' # Remove the comment on the following line if you are using a confidential client diff --git a/Sampled-Stream/SampledStream.java b/Sampled-Stream/SampledStream.java index 001cb95..8654199 100644 --- a/Sampled-Stream/SampledStream.java +++ b/Sampled-Stream/SampledStream.java @@ -17,7 +17,7 @@ * */ public class SampledStreamDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Search-Spaces/SearchSpacesDemo.java b/Search-Spaces/SearchSpacesDemo.java index bcde135..0aed9f7 100644 --- a/Search-Spaces/SearchSpacesDemo.java +++ b/Search-Spaces/SearchSpacesDemo.java @@ -19,7 +19,7 @@ * */ public class SpacesLookupDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Spaces-Lookup/SpacesLookupDemo.java b/Spaces-Lookup/SpacesLookupDemo.java index bcde135..0aed9f7 100644 --- a/Spaces-Lookup/SpacesLookupDemo.java +++ b/Spaces-Lookup/SpacesLookupDemo.java @@ -19,7 +19,7 @@ * */ public class SpacesLookupDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Tweet-Lookup/TweetsDemo.java b/Tweet-Lookup/TweetsDemo.java index c197ca4..521d472 100644 --- a/Tweet-Lookup/TweetsDemo.java +++ b/Tweet-Lookup/TweetsDemo.java @@ -19,7 +19,7 @@ * */ public class TweetsDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Tweet-Lookup/get_tweets_with_bearer_token.py b/Tweet-Lookup/get_tweets_with_bearer_token.py index 5f1cafa..4e34e36 100644 --- a/Tweet-Lookup/get_tweets_with_bearer_token.py +++ b/Tweet-Lookup/get_tweets_with_bearer_token.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/Tweet-Lookup/get_tweets_with_user_context.py b/Tweet-Lookup/get_tweets_with_user_context.py index e66becb..72b2bab 100644 --- a/Tweet-Lookup/get_tweets_with_user_context.py +++ b/Tweet-Lookup/get_tweets_with_user_context.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'CONSUMER_KEY'='' # export 'CONSUMER_SECRET'='' diff --git a/Usage Tweets/UsageTweetsDemo.java b/Usage Tweets/UsageTweetsDemo.java index 38f588f..44e7fbf 100644 --- a/Usage Tweets/UsageTweetsDemo.java +++ b/Usage Tweets/UsageTweetsDemo.java @@ -19,7 +19,7 @@ * */ public class UsageTweetsDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/Usage Tweets/get_usage_tweets.py b/Usage Tweets/get_usage_tweets.py index e2842aa..0d0b3fa 100644 --- a/Usage Tweets/get_usage_tweets.py +++ b/Usage Tweets/get_usage_tweets.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN") diff --git a/User-Lookup/UsersDemo.java b/User-Lookup/UsersDemo.java index 51826a1..efad3b4 100644 --- a/User-Lookup/UsersDemo.java +++ b/User-Lookup/UsersDemo.java @@ -19,7 +19,7 @@ * */ public class UsersDemo { - // To set your enviornment variables in your terminal run the following line: + // To set your environment variables in your terminal run the following line: // export 'BEARER_TOKEN'='' public static void main(String args[]) throws IOException, URISyntaxException { diff --git a/User-Lookup/get_users_with_bearer_token.py b/User-Lookup/get_users_with_bearer_token.py index c751f58..e1391f2 100644 --- a/User-Lookup/get_users_with_bearer_token.py +++ b/User-Lookup/get_users_with_bearer_token.py @@ -2,7 +2,7 @@ import os import json -# To set your enviornment variables in your terminal run the following line: +# To set your environment variables in your terminal run the following line: # export 'BEARER_TOKEN'='' bearer_token = os.environ.get("BEARER_TOKEN")