Skip to content

Commit 11ef972

Browse files
authored
fix(curriculum): fix some minor typos in workshop files (freeCodeCamp#63838)
1 parent dcf58c1 commit 11ef972

18 files changed

Lines changed: 18 additions & 18 deletions

File tree

curriculum/challenges/english/blocks/quiz-recursion/66edd43cded6bff30944b676.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ It should never have a base case.
162162

163163
---
164164

165-
It should only be used for the fibonacci sequence.
165+
It should only be used for the Fibonacci sequence.
166166

167167
---
168168

curriculum/challenges/english/blocks/workshop-caesar-cipher/680a41ef5bfdc059cfd9d4b5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-2
77

88
# --description--
99

10-
In previous lessons, you learned about different data types you can store in a variable. You just assigned an integer value. Now you need to assign a string, which is a sequences of characters enclosed by either single or double quotes:
10+
In previous lessons, you learned about different data types you can store in a variable. You just assigned an integer value. Now you need to assign a string, which is a sequence of characters enclosed by either single or double quotes:
1111

1212
```py
1313
string_1 = 'I am a string'

curriculum/challenges/english/blocks/workshop-cat-photo-app/5dc17dc8f86c76b9248c6eb5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Your comment should start with `<!--`. You are missing one or more of the charac
2727
assert.match(code, /<!--/);
2828
```
2929

30-
Your comment should end with `-->`. You are missing one or more of the characters that define the end of a comment.
30+
Your comment should end with `-->`. You are missing one or more of the characters that define the end of a comment.
3131

3232
```js
3333
assert.match(code, /-->/);

curriculum/challenges/english/blocks/workshop-email-simulator/6852f06fdde1b4634a263f03.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dashedName: step-4
99

1010
Now let's test the `Email` class by creating an email object and checking that it stores information correctly. You'll print a couple of attributes to verify everything works.
1111

12-
Create an email object named `email_obj` with `alice@example.com` as the sender, `bob@example.com` as the receiver, `Hello` as the subject, and `Hi Bob!` as the body. Then print the `sender` and `subject` attributes as separate print statements to verify they are stored correctly.
12+
Create an email object named `email_obj` with `alice@example.com` as the sender, `bob@example.com` as the receiver, `Hello` as the subject, and `Hi Bob!` as the body. Then print the `sender` and `subject` attributes as separate print statements to verify they are stored correctly.
1313

1414
# --hints--
1515

curriculum/challenges/english/blocks/workshop-email-simulator/6853f68dd3affa9adb2e6d99.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Great! Now that you've practiced datetime formatting, remove the `current_time`
1111

1212
# --hints--
1313

14-
You should not have the the statement `current_time = datetime.datetime.now()")` in your code.
14+
You should not have the statement `current_time = datetime.datetime.now()")` in your code.
1515

1616
```js
1717
({

curriculum/challenges/english/blocks/workshop-emoji-reactor/689b17e7e63b8e2c13839e98.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Remove the `console.log`.
1515

1616
Check if the current first number inside the `.count` is already 10 (the text is `10/10`), and if so, do nothing.
1717

18-
If the number is less then 10, increment the current count by 1 and update the text of the `.count` element. For example, if the current count is 2, it should be incremented to 3 and the text for the `.count` element should be `3/10`.
18+
If the number is less than 10, increment the current count by 1 and update the text of the `.count` element. For example, if the current count is 2, it should be incremented to 3 and the text for the `.count` element should be `3/10`.
1919

2020
# --hints--
2121

curriculum/challenges/english/blocks/workshop-fruit-search-app/6813e49f0a3ec06c1e80c93b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You should have an `async` arrow function as the first argument to `setTimeout`.
1717
assert.match(code, /setTimeout\s*\(\s*async\s*\(\s*\)\s*=>\s*{/);
1818
```
1919

20-
Inside the `async` function , you should create a `try...catch` block.
20+
Inside the `async` function, you should create a `try...catch` block.
2121

2222
```js
2323
assert.match(

curriculum/challenges/english/blocks/workshop-media-catalogue/68af277e60e009597dd861e9.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Your `MediaCatalogue` class should have an `__init__` method.
2929
})
3030
```
3131

32-
Your `__init__` method should set the `items` attribute to an empty list .
32+
Your `__init__` method should set the `items` attribute to an empty list.
3333

3434
```js
3535
({

curriculum/challenges/english/blocks/workshop-media-catalogue/68b704862dd6559e890c2a86.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You should have a variable named `result` in your `__str__` method.
2121
})
2222
```
2323

24-
Your should assign `f'Media Catalogue ({len(self.items)} items):\n\n'` to the `result` variable.
24+
You should assign `f'Media Catalogue ({len(self.items)} items):\n\n'` to the `result` variable.
2525

2626
```js
2727
({

curriculum/challenges/english/blocks/workshop-planets-tablist/68599e9259c0eec3e78c52fd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-6
77

88
# --description--
99

10-
By default the other tabs should not be selected. You can do this by adding the `aria-selected` attribute to the second and third `button` elements and setting their values to `"false"`.
10+
By default, the other tabs should not be selected. You can do this by adding the `aria-selected` attribute to the second and third `button` elements and setting their values to `"false"`.
1111

1212
# --hints--
1313

0 commit comments

Comments
 (0)