From 6eac8ad3d3c125966069fcbea80dc04cce643cc1 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Fri, 13 Oct 2023 11:19:03 -0300 Subject: [PATCH] fix typo --- notebooks/00-quick_intro.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/notebooks/00-quick_intro.ipynb b/notebooks/00-quick_intro.ipynb index 7040ec2..3e05290 100644 --- a/notebooks/00-quick_intro.ipynb +++ b/notebooks/00-quick_intro.ipynb @@ -19,7 +19,7 @@ "```\n", "\n", "gliderpy aims to make querying and downloading glider data easier.\n", - "Here is how one would build a query using `erddapy`:" + "Here is how one would build a query using erddapy:" ] }, { @@ -84,7 +84,7 @@ "The variable names are standardized by gliderpy,\n", "making it easier to fetch from different data sources and comparing the results.\n", "\n", - "The `gliderpy` libray can subset the data on the server side by passing a geographic bounding box and time interval." + "The gliderpy library can subset the data on the server side by passing a geographic bounding box and time interval." ] }, { @@ -124,7 +124,7 @@ "source": [ "### Dataset search\n", "\n", - "One can query all `dataset_id`s available in the server." + "One can query all dataset_ids available in the server." ] }, { @@ -138,7 +138,7 @@ "datasets = DatasetList()\n", "ds_ids = datasets.get_ids()\n", "\n", - "print(f\"found {len(ds_ids)} glider datasets on the server {datasets.e.server}\")" + "print(f\"found {len(ds_ids)} glider datasets on the server {datasets.e.server}.\")" ] } ],