Skip to content

Commit 73113a3

Browse files
docs: Fix typo
Signed-off-by: Luis Valdes <luis@valdes.com.br>
1 parent 908db86 commit 73113a3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+50
-50
lines changed

Batch-Compliance/java/src/main/java/CreateJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* */
1616
public class CreateJob {
1717

18-
// To set your enviornment variables in your terminal run the following line:
18+
// To set your environment variables in your terminal run the following line:
1919
// export 'BEARER_TOKEN'='<your_bearer_token>'
2020

2121
public static void main(String args[]) throws IOException {

Batch-Compliance/java/src/main/java/GetJobById.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* */
1717
public class GetJobById {
1818

19-
// To set your enviornment variables in your terminal run the following line:
19+
// To set your environment variables in your terminal run the following line:
2020
// export 'BEARER_TOKEN'='<your_bearer_token>'
2121

2222
public static void main(String args[]) throws IOException, URISyntaxException {

Batch-Compliance/java/src/main/java/GetJobs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* */
2020
public class GetJobs {
2121

22-
// To set your enviornment variables in your terminal run the following line:
22+
// To set your environment variables in your terminal run the following line:
2323
// export 'BEARER_TOKEN'='<your_bearer_token>'
2424

2525
public static void main(String args[]) throws IOException, URISyntaxException {

Blocks-Lookup/lookup_blocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import json
44

5-
# To set your enviornment variables in your terminal run the following line:
5+
# To set your environment variables in your terminal run the following line:
66
# export 'CONSUMER_KEY'='<your_consumer_key>'
77
# export 'CONSUMER_SECRET'='<your_consumer_secret>'
88

Bookmarks-lookup/bookmarks_lookup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
from requests_oauthlib import OAuth2Session
99

1010
# First, you will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID.
11-
# Inside your terminal you will need to set an enviornment variable
11+
# Inside your terminal you will need to set an environment variable
1212
# export CLIENT_ID='your-client-id'
1313
client_id = os.environ.get("CLIENT_ID")
1414

1515
# If you have selected a type of App that is a confidential client you will need to set a client secret.
1616
# Confidential Clients securely authenticate with the authorization server.
1717

18-
# Inside your terminal you will need to set an enviornment variable
18+
# Inside your terminal you will need to set an environment variable
1919
# export CLIENT_SECRET='your-client-secret'
2020

2121
# Remove the comment on the following line if you are using a confidential client

Bookmarks-lookup/bookmarks_lookup.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
require 'twitter_oauth2'
44

55
# First, you will need to enable OAuth 2.0 in your App’s auth settings in the Developer Portal to get your client ID.
6-
# Inside your terminal you will need to set an enviornment variable
6+
# Inside your terminal you will need to set an environment variable
77
# export CLIENT_ID='your-client-id'
88
client_id = ENV["CLIENT_ID"]
99

1010
# If you have selected a type of App that is a confidential client you will need to set a client secret.
1111
# Confidential Clients securely authenticate with the authorization server.
1212

13-
# Inside your terminal you will need to set an enviornment variable
13+
# Inside your terminal you will need to set an environment variable
1414
# export CLIENT_SECRET='your-client-secret'
1515

1616
# Remove the comment on the following line if you are using a confidential client

Filtered-Stream/FilteredStreamDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Sample code to demonstrate the use of the Filtered Stream endpoint
2121
* */
2222
public class FilteredStreamDemo {
23-
// To set your enviornment variables in your terminal run the following line:
23+
// To set your environment variables in your terminal run the following line:
2424
// export 'BEARER_TOKEN'='<your_bearer_token>'
2525

2626
public static void main(String args[]) throws IOException, URISyntaxException {

Filtered-Stream/filtered_stream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import json
44

5-
# To set your enviornment variables in your terminal run the following line:
5+
# To set your environment variables in your terminal run the following line:
66
# export 'BEARER_TOKEN'='<your_bearer_token>'
77
bearer_token = os.environ.get("BEARER_TOKEN")
88

Full-Archive-Search/FullArchiveSearchDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* */
2020
public class FullArchiveSearchDemo {
2121

22-
// To set your enviornment variables in your terminal run the following line:
22+
// To set your environment variables in your terminal run the following line:
2323
// export 'BEARER_TOKEN'='<your_bearer_token>'
2424

2525
public static void main(String args[]) throws IOException, URISyntaxException {

Full-Archive-Tweet-Counts/FullArchiveTweetCountsDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* */
2020
public class FullArchiveTweetCountsDemo {
2121

22-
// To set your enviornment variables in your terminal run the following line:
22+
// To set your environment variables in your terminal run the following line:
2323
// export 'BEARER_TOKEN'='<your_bearer_token>'
2424

2525
public static void main(String args[]) throws IOException, URISyntaxException {

0 commit comments

Comments
 (0)