Skip to content

Commit dd56498

Browse files
committed
Spell divisible correctly
1 parent e6d6e7b commit dd56498

File tree

9 files changed

+15
-13
lines changed

9 files changed

+15
-13
lines changed

bootcamp_content/projects/exercism-widgets/exercises/coding-fundamentals-advert/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ A final technical note for those who are curious or more advanced. Everything in
2626

2727
### Misbehaving images
2828

29-
One thing that can be a bit confusing is fitting an imagine into a grid slot. If you choose to use grid to solve this exercise, then setting `width: 100%` on the images will mean they obey an grid column instructions you give.
29+
One thing that can be a bit confusing is fitting an imagine into a grid slot. If you choose to use grid to solve this exercise, then setting `width: 100%` on the images will mean they obey an grid column instructions you give. This might also be useful in some circumstances with flexbox too!
3030

3131
### Page Copy
3232

bootcamp_content/projects/exercism-widgets/exercises/journey-button/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can solve this using whichever properties you want. There are few things you
1818
**Sizes:**
1919

2020
- Everything uses pixels.
21-
- Other than the font-size, everything is divisble by 5.
21+
- Other than the font-size, everything is divisible by 5.
2222

2323
**Images:**
2424

bootcamp_content/projects/exercism-widgets/exercises/notifications-icon/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ There are three colors used:
3838
**Sizes:**
3939

4040
- Everything uses pixels other than the border radiuses and the outermost height of `100%`;
41-
- Other than the font-size, everything is divisble by 5.
41+
- Other than the font-size, everything is divisible by 5.
4242

4343
**Image:**
4444

bootcamp_content/projects/exercism-widgets/exercises/reputation-icon/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ There are four colors used:
2020
**Sizes:**
2121

2222
- Everything uses pixels other than one border radiuses and the outermost height of `100%`;
23-
- Other than the font-size, a border-radius and the dot (see below), everything is divisble by 5.
23+
- Other than the font-size, a border-radius and the dot (see below), everything is divisible by 5.
2424

2525
**Image:**
2626

bootcamp_content/projects/exercism-widgets/exercises/track-summary/introduction.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,29 @@ Next up we're looking at the track summary widget. This appears in a few places
44

55
## Instructions
66

7-
You can solve this using whichever properties you want.
8-
9-
I would recommend **not** using the `<progress>` HTML element at this stage.
7+
You can solve this using whichever properties you want.
108

9+
I would recommend **not** using the `<progress>` HTML element at this stage.
1110

1211
There are few things you need to know:
1312

1413
**Colors:**
14+
1515
- Dark gray (title): `#130b43`
1616
- Light gray (subtext): `#5c5589`
1717
- Light Blue (background): `rgb(230, 237, 254)`
1818
- Dark Blue (progress bar): `blue`
1919
- White (progress bar) : `white`
2020

2121
**Sizes:**
22+
2223
- Everything uses pixels other than the actual progress on the progress bar.
23-
- Other than the font-size, everything is divisble by 5.
24+
- Other than the font-size, everything is divisible by 5.
2425
- The progress bar part should have a maximum width of 250px.
2526

2627
**Images:**
28+
2729
- `/bootcamp/images/javascript.svg`
2830
- `/bootcamp/images/chevron-gray.svg`
2931

30-
Remember to zoom in and out to check that your version works on different screen sizes!
32+
Remember to zoom in and out to check that your version works on different screen sizes!

bootcamp_content/projects/flexy-flags/exercises/flexy-cameroon/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You should **only** use the following properties:
1616
- `flex-grow`: Used to specify whether an element should grow to fill the remaining space.
1717
- `justify-content`: Used to justify content on the main axis.
1818
- `align-items`: Used to justify content on the secondary axis.
19-
- `width`: You can set the width of the image using this property. It should be a percentage (divisble by 10).
19+
- `width`: You can set the width of the image using this property. It should be a percentage (divisible by 10).
2020

2121
### The SVG image
2222

bootcamp_content/projects/flexy-flags/exercises/flexy-liberia/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You should **only** use the following properties:
2121
- `justify-content`: Used to justify content on the main axis.
2222
- `align-items`: Used to justify content on the secondary axis.
2323
- `aspect-ratio`: Used to set the aspect ratio of an element. (e.g. `1` makes something square, `1.5` makes something into a rectangle).
24-
- `width`: You can set the width of the image using this property. It should be a percentage (divisble by 10).
24+
- `width`: You can set the width of the image using this property. It should be a percentage (divisible by 10).
2525
- `height`: On some versions of Safari, you must specify a height when using aspect-ratio. If you use `aspect-ratio` but it doesn't behave as you expect, try adding `height: 100%` to the element with the aspect-ratio set. Do not use `height` in any other situation in this exercise.
2626

2727
You might find it helpful to use `nth-child` selectors in this exercise. We looked at these briefly in the teaching video. To target the 3rd div in a section, you could use:

bootcamp_content/projects/javascript-fundamentals/exercises/stormy-sounds/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If you took part in Coding Fundamentals, try and refine your code to make it a l
88

99
Your task is to convert a number into its corresponding sounds.
1010

11-
We do this by seeing what the number is divisble by (e.g. the number 10 is divisble by 1, 2, 5 and 10. The number 12 is divisible by 1, 2, 3, 4, 6 and 12).
11+
We do this by seeing what the number is divisible by (e.g. the number 10 is divisible by 1, 2, 5 and 10. The number 12 is divisible by 1, 2, 3, 4, 6 and 12).
1212

1313
If a given number:
1414

bootcamp_content/projects/number-puzzles/exercises/raindrops/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is a programming exercise that's been used in interviews forever.
55

66
Your task is to convert a number into its corresponding raindrop sounds.
77

8-
We do this by seeing what the number is divisble by (e.g. the number 10 is divisble by 1, 2, 5 and 10. The number 12 is divisible by 1, 2, 3, 4, 6 and 12).
8+
We do this by seeing what the number is divisible by (e.g. the number 10 is divisible by 1, 2, 5 and 10. The number 12 is divisible by 1, 2, 3, 4, 6 and 12).
99

1010
If a given number:
1111

0 commit comments

Comments
 (0)