Skip to content

Commit

Permalink
fix spelling errors in exchange converter
Browse files Browse the repository at this point in the history
  • Loading branch information
DocOtak committed Dec 16, 2024
1 parent 2445362 commit 6108429
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/_exchange_checker_include.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h4>Log Console</h4>
nc_download_link = document.createElement("a")
nc_download_link.href = nc_url
nc_download_link.download = nc_fname
nc_download_link.innerText = f"Downlaod {nc_fname}"
nc_download_link.innerText = f"Download {nc_fname}"
output = document.querySelector("#output")
output.appendChild(nc_download_link)
output.appendChild(document.createElement("br"))
Expand Down Expand Up @@ -95,7 +95,7 @@ <h4>Log Console</h4>

def _handle_fail(something):
status = document.querySelector("#status")
status.innerText = f"Failure see traceback..."
status.innerText = f"Failure see traceback... (or JS console log)"
document.querySelector("#process_exchange").disabled = False

@when("click", "#process_exchange")
Expand Down
2 changes: 1 addition & 1 deletion docs/_static/convert_exchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def to_xarray(array_buffer, checks):
ex_bytes = io.BytesIO(bytes)
try:
ex = read_exchange(ex_bytes, checks=checks)
logger("success! makeing a netCDF file")
logger("success! making a netCDF file")
except ValueError as er:
display(Pre("".join(traceback.format_exception(er))), target="log", append=True)
display(er.error_data, target="log", append=True)
Expand Down

0 comments on commit 6108429

Please sign in to comment.