Skip to content

Commit 313b118

Browse files
fix(curriculum): remove references to non-existent code examples (freeCodeCamp#60501)
1 parent 22724d5 commit 313b118

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

curriculum/challenges/english/25-front-end-development/review-css-colors/671a90c1cf517678b130419e.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dashedName: review-css-colors
1818
- **Color Wheel**: The color wheel is a circular diagram that shows how colors relate to each other. It's an essential tool for designers because it helps them to select color combinations.
1919
- **Analogous Color Schemes**: These color schemes create cohesive and soothing experiences. They have analogous colors, which are adjacent to each other in the color wheel.
2020
- **Complementary Color Schemes**: These color schemes create high contrast and visual impact. Their colors are located on the opposite ends of the color wheel, relative to each other.
21-
- **Triadic Color Scheme**: This color scheme has vibrant colors. They are made from colors that are approximately equidistant from each other. If they are connected, they form an equilateral triangle on the color wheel, as you can see in this example.
21+
- **Triadic Color Scheme**: This color scheme has vibrant colors. They are made from colors that are approximately equidistant from each other. If they are connected, they form an equilateral triangle on the color wheel.
2222
- **Monochromatic Color Scheme**: For this color scheme, all the colors are derived from the same base color by adjusting its lightness, darkness, and saturation. This evokes a feeling of unity and harmony while still creating contrast.
2323

2424
## Different Ways to Work with Colors in CSS

curriculum/challenges/english/25-front-end-development/review-css-flexbox/671a940c69cdee833d4cc312.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dashedName: review-css-flexbox
2525
- **`flex-wrap: nowrap;`**: This is the default value. Flex items won't be wrapped onto a new line, even if their width exceed the container's width.
2626
- **`flex-wrap: wrap;`**: This property will wrap the items when they exceed the width of their container.
2727
- **`flex-wrap: wrap-reverse;`**: This property will wrap flex items in reverse order.
28-
- **`flex-flow` Property**: This property is a shorthand property for `flex-direction` and `flex-wrap`. In this example, we set `flex-direction` to `column` and `flex-wrap` to `wrap-reverse`.
28+
- **`flex-flow` Property**: This property is a shorthand property for `flex-direction` and `flex-wrap`.
2929

3030
```css
3131
flex-flow: column wrap-reverse;

curriculum/challenges/english/25-front-end-development/review-css/671a9a0a140c2b9d6a75629f.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ Review the concepts below to prepare for the upcoming exam.
207207
- **Color Wheel**: The color wheel is a circular diagram that shows how colors relate to each other. It's an essential tool for designers because it helps them to select color combinations.
208208
- **Analogous Color Schemes**: These color schemes create cohesive and soothing experiences. They have analogous colors, which are adjacent to each other in the color wheel.
209209
- **Complementary Color Schemes**: These color schemes create high contrast and visual impact. Their colors are located on the opposite ends of the color wheel, relative to each other.
210-
- **Triadic Color Scheme**: This color scheme has vibrant colors. They are made from colors that are approximately equidistant from each other. If they are connected, they form an equilateral triangle on the color wheel, like you can see in this example.
210+
- **Triadic Color Scheme**: This color scheme has vibrant colors. They are made from colors that are approximately equidistant from each other. If they are connected, they form an equilateral triangle on the color wheel.
211211
- **Monochromatic Color Scheme**: For this color scheme, all the colors are derived from the same base color by adjusting its lightness, darkness, and saturation. This evokes a feeling of unity and harmony while still creating contrast.
212212

213213
## Different Ways to Work with Colors in CSS
@@ -298,7 +298,7 @@ Review the concepts below to prepare for the upcoming exam.
298298
- **`flex-wrap: nowrap;`**: This is the default value. Flex items won't be wrapped onto a new line, even if their width exceed the container's width.
299299
- **`flex-wrap: wrap;`**: This property will wrap the items when they exceed the width of their container.
300300
- **`flex-wrap: wrap-reverse;`**: This property will wrap flex items in reverse order.
301-
- **`flex-flow` Property**: This property is a shorthand property for `flex-direction` and `flex-wrap`. In this example, we set `flex-direction` to `column` and `flex-wrap` to `wrap-reverse`.
301+
- **`flex-flow` Property**: This property is a shorthand property for `flex-direction` and `flex-wrap`.
302302

303303
## The `justify-content` Property
304304

0 commit comments

Comments
 (0)