Skip to content

Commit

Permalink
replace curly quotes w/ straight quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dusch4593 committed May 10, 2024
1 parent 9e82d80 commit 6c87177
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -89,9 +89,9 @@ Next, you'll be prompted to state what you want to do with OpenWeather's API.

<ImageZoom src="https://raw.githubusercontent.com/codedex-io/projects/main/projects/view-weather-with-html-css-js/open_weather_account_prompt.png" alt="Prompt by OpenWeather (post-login)" />

I recommend choosing Education/Science" or Other".
I recommend choosing "Education/Science" or "Other".

You should now be ready to view your API key! After creating a new account, a new key should be generated for you. Near the top right, select your username, followed by My API keys" in the dropdown:
You should now be ready to view your API key! After creating a new account, a new key should be generated for you. Near the top right, select your username, followed by "My API keys" in the dropdown:

<ImageZoom src="https://raw.githubusercontent.com/codedex-io/projects/main/projects/view-weather-with-html-css-js/open_weather_api_key.gif" alt="Screen for generating new keys for OpenWeather API" />

Expand Down Expand Up @@ -372,7 +372,7 @@ You may have noticed that these functions have the `async` keyword in front of t

First, let's write the code for the `getLonAndLat()` function that will use OpenWeather's GeoCoding API to return the longitude and latitude data based on our `searchInput`.

We're only going to search by location. Therefore, the `searchInput` should be a string of a valid location or city name (e.g., Pittsburgh" or Brooklyn, NY").
We're only going to search by location. Therefore, the `searchInput` should be a string of a valid location or city name (e.g., "Pittsburgh" or "Brooklyn, NY").

**Note:** But feel free to add more search criteria to this code (e.g., zip code)!

Expand Down

0 comments on commit 6c87177

Please sign in to comment.