Skip to content

Commit

Permalink
fix typo (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiraware authored Jul 13, 2024
1 parent a652c1e commit 6d232fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ async def main():
strong_earthquake = await bmkg.earthquake.get_strong_earthquake()
felt_earthquake = await bmkg.earthquake.get_felt_earthquake()

print(f'Weather Forecast: {weather_forecast}')
print(f'Latest Earthquakes: {latest_earthquake}')
print(f"Weather Forecast: {weather_forecast}")
print(f"Latest Earthquakes: {latest_earthquake}")
print(f"Strong Earthquakes: {strong_earthquake}")
print(f"Felt Earthquakes: {felt_earthquake}")

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ async def main():
strong_earthquake = await bmkg.earthquake.get_strong_earthquake()
felt_earthquake = await bmkg.earthquake.get_felt_earthquake()

print(f'Weather Forecast: {weather_forecast}')
print(f'Latest Earthquakes: {latest_earthquake}')
print(f"Weather Forecast: {weather_forecast}")
print(f"Latest Earthquakes: {latest_earthquake}")
print(f"Strong Earthquakes: {strong_earthquake}")
print(f"Felt Earthquakes: {felt_earthquake}")

Expand Down

0 comments on commit 6d232fa

Please sign in to comment.