diff --git a/examples/check_current_and_past_jobs.ipynb b/examples/check_current_and_past_jobs.ipynb index a5c8911..2c7829e 100644 --- a/examples/check_current_and_past_jobs.ipynb +++ b/examples/check_current_and_past_jobs.ipynb @@ -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. " ] }, { @@ -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}\")" ] }, @@ -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" ] }, { @@ -923,4 +923,4 @@ }, "nbformat": 4, "nbformat_minor": 5 -} \ No newline at end of file +} diff --git a/examples/run_job_and_check_status.ipynb b/examples/run_job_and_check_status.ipynb index c581588..ae16492 100644 --- a/examples/run_job_and_check_status.ipynb +++ b/examples/run_job_and_check_status.ipynb @@ -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", @@ -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\"`." ] }, { @@ -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" ] }, { @@ -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. " ] }, { @@ -373,4 +373,4 @@ }, "nbformat": 4, "nbformat_minor": 2 -} \ No newline at end of file +}