Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling of example notebooks #81

Merged
merged 9 commits into from
Aug 5, 2024
10 changes: 5 additions & 5 deletions examples/check_current_and_past_jobs.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"id": "7f215e73",
"metadata": {},
"source": [
"All the jobs currenlty in the job queue are stored in the newly created `jobs` list. An easy way of viewing and this list is to print the objects in the list. "
"All the jobs currently in the job queue are stored in the newly created `jobs` list. An easy way of viewing and this list is to print the objects in the list. "
]
},
{
Expand Down Expand Up @@ -238,13 +238,13 @@
"name": "stdout",
"output_type": "stream",
"text": [
"Numer of nodes = 25\n",
"Number of nodes = 25\n",
"jobid = 8407414\n"
]
}
],
"source": [
"print(f\"Numer of nodes = {jobs[0].nodes}\")\n",
"print(f\"Number of nodes = {jobs[0].nodes}\")\n",
"print(f\"jobid = {jobs[0].jobid}\")"
]
},
Expand Down Expand Up @@ -395,7 +395,7 @@
"id": "68d65541",
"metadata": {},
"source": [
"Multiple jobs can also be retrived simultaniosly later on by creating a list of jobids. This can reduce the amount of calls needed to the Superfacility REST Api and get your results back"
"Multiple jobs can also be retrieved simultaniosly later on by creating a list of jobids. This can reduce the amount of calls needed to the Superfacility REST Api and get your results back"
]
},
{
Expand Down Expand Up @@ -923,4 +923,4 @@
},
"nbformat": 4,
"nbformat_minor": 5
}
}
10 changes: 5 additions & 5 deletions examples/run_job_and_check_status.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"}\n",
"```\n",
"\n",
"A full path to the file can also be given to the client to load in a differnt client_id and secret.\n",
"A full path to the file can also be given to the client to load in a different client_id and secret.\n",
"\n",
"```python\n",
"client = Client(key_name=\"/full/path/to/key.pem\")\n",
Expand Down Expand Up @@ -78,7 +78,7 @@
"source": [
"### Before we start let's check that Perlmutter is up\n",
"\n",
"In this exmple we are getting the resource by the sting name `\"perlmutter\"`."
"In this example we are getting the resource by the string name `\"perlmutter\"`."
]
},
{
Expand Down Expand Up @@ -177,7 +177,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Once we have the script it can be submited as a job"
"### Once we have the script it can be submitted as a job"
]
},
{
Expand Down Expand Up @@ -220,7 +220,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"To get the most recent infomation about the job you can ask the server to update the job. The `PENDING` state in this example means that the job is waiting on the request resources to become availbable to run. "
"To get the most recent information about the job you can ask the server to update the job. The `PENDING` state in this example means that the job is waiting on the request resources to become available to run. "
]
},
{
Expand Down Expand Up @@ -373,4 +373,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}