Skip to content

Commit

Permalink
fixing capitalisation to match web page
Browse files Browse the repository at this point in the history
  • Loading branch information
colinsauze authored Jan 25, 2024
1 parent 68c4013 commit a012491
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _episodes/05-scraping.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ Now let's focus on the `table` element:

~~~
(soup
.find(string = "Upcoming carpentries workshops")
.find(string = "Upcoming Carpentries Workshops")
.find_parents()[1]
.find("table"))
~~~
Expand All @@ -287,7 +287,7 @@ Now we can get a list of row elements with

~~~
rows = (soup
.find(string = "upcoming carpentries workshops")
.find(string = "Upcoming Carpentries Workshops")
.find_parents()[1]
.find("table")
.find_all("tr"))
Expand Down

0 comments on commit a012491

Please sign in to comment.