Skip to content

Commit 58fb603

Browse files
authored
Merge pull request #248 from warrickball/warrickball-typos
Fix some typos
2 parents ad3f8a9 + 5476424 commit 58fb603

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

episodes/02-coords.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ The following function combines these steps.
582582

583583
```python
584584
def skycoord_to_string(skycoord):
585-
"""Convert a one-dimenstional list of SkyCoord to string for Gaia's query format."""
585+
"""Convert a one-dimensional list of SkyCoord to string for Gaia's query format."""
586586
corners_list_str = skycoord.to_string()
587587
corners_single_str = ' '.join(corners_list_str)
588588
return corners_single_str.replace(' ', ', ')

episodes/03-transform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ black, round marker (`k` is for black because `b` is for blue).
287287
The functions `xlabel` and `ylabel` put labels on the axes.
288288

289289
Looking at this plot, we can see that the region we selected, which is
290-
a rectangle in GD-1 coordinates, is a non-rectanglar region in ICRS
290+
a rectangle in GD-1 coordinates, is a non-rectangular region in ICRS
291291
coordinates.
292292

293293
However, this scatter plot has a problem. It is

episodes/08-plot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exercises: 65
1515
:::::::::::::::::::::::::::::::::::::::: questions
1616

1717
- What elements make a compelling visualization that authentically reports scientific results ready for scientific presentation and publication?
18-
- What tools and techinques are available to save time on creating presentation and publication-ready figures?
18+
- What tools and techniques are available to save time on creating presentation and publication-ready figures?
1919

2020
::::::::::::::::::::::::::::::::::::::::::::::::::
2121

@@ -823,7 +823,7 @@ create figures that contain multiple panels.
823823
:::::::::::::::::::::::::::::::::::::::: keypoints
824824

825825
- Effective figures focus on telling a single story clearly and authentically. The major decisions needed in creating an effective summary figure like this one can be done away from a computer and built up from low fidelity (hand drawn) to high (tweaking rcParams, etc.).
826-
- Consider using annotations to guide the reader’s attention to the most important elements of a figure, while keeping in mind accessiblity issues that such detail may introduce.
826+
- Consider using annotations to guide the reader’s attention to the most important elements of a figure, while keeping in mind accessibility issues that such detail may introduce.
827827
- The default Matplotlib style generates good quality figures, but there are several ways you can override the defaults.
828828
- If you find yourself making the same customizations on several projects, you might want to create your own style sheet.
829829

instructors/instructor-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ This idiom violates the recommendation not to repeat variables names, but since
160160

161161
### Episode 5: Coordinate transformation and selection
162162

163-
- This is likely the first episode of Day 2. You should start by having learners start a new notebook. They will need to read in the data they saved yesterday to HDF5 files and the functions they wrote yesterday. You can follow the directions under the collapsable section at the beginning of this episode called "Starting from this episode". If you are using files from the `student_download` directory be sure to add the correct path `student_download/backup-data/<filename>`.
163+
- This is likely the first episode of Day 2. You should start by having learners start a new notebook. They will need to read in the data they saved yesterday to HDF5 files and the functions they wrote yesterday. You can follow the directions under the collapsible section at the beginning of this episode called "Starting from this episode". If you are using files from the `student_download` directory be sure to add the correct path `student_download/backup-data/<filename>`.
164164

165165
- This episode is faster than it looks because learners have seen much of the content already
166166

instructors/prereqs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The following skills are useful, but not required:
4646
- Apply a function to an entire Numpy array or to a single array axis.
4747
- Write a user-defined function.
4848

49-
If you are signed up, or considering signing up for a workshop, and aren't sure whether you meet these reqirements, please
49+
If you are signed up, or considering signing up for a workshop, and aren't sure whether you meet these requirements, please
5050
get in touch with the workshop instructors or host.
5151

5252

0 commit comments

Comments
 (0)