From 6108429b426c39c066a8eae1d4dc397ce445083c Mon Sep 17 00:00:00 2001 From: Andrew Barna Date: Mon, 16 Dec 2024 20:59:26 +0000 Subject: [PATCH] fix spelling errors in exchange converter --- docs/_exchange_checker_include.html | 4 ++-- docs/_static/convert_exchange.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/_exchange_checker_include.html b/docs/_exchange_checker_include.html index 26ed590..2086a30 100644 --- a/docs/_exchange_checker_include.html +++ b/docs/_exchange_checker_include.html @@ -65,7 +65,7 @@

Log Console

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")) @@ -95,7 +95,7 @@

Log Console

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") diff --git a/docs/_static/convert_exchange.py b/docs/_static/convert_exchange.py index bbbd9b3..ac25fc4 100644 --- a/docs/_static/convert_exchange.py +++ b/docs/_static/convert_exchange.py @@ -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)