Skip to content

Commit 77db068

Browse files
committed
no clue why I'm getting the last error but this was in feedback
1 parent b36e583 commit 77db068

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

mirage/data/course-extension-ideas.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ export default [
44
course_slug: 'redis',
55
name: 'Persistence',
66
development_status: 'released',
7-
development_status_label: 'released',
87
description_md:
98
"[Regular expressions](https://en.wikipedia.org/wiki/Regular_expression) are patterns used to match character combinations in strings. In this challenge you'll build your own version of `grep`, a CLI tool for searching using Regexes. \n\nAlong the way you'll learn about basic Regex syntax, [character classes](https://www.regular-expressions.info/refcharclass.html), [quantifiers](https://www.regular-expressions.info/refrepeat.html), [metacharacters](https://www.regular-expressions.info/characters.html) and more.",
109
},

mirage/data/course-ideas.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@ export default [
33
slug: 'regex',
44
name: 'Build your own Regex Parser',
55
development_status: 'released',
6-
development_status_label: 'released',
76
description_md:
87
"[Regular expressions](https://en.wikipedia.org/wiki/Regular_expression) are patterns used to match character combinations in strings. In this challenge you'll build your own version of `grep`, a CLI tool for searching using Regexes. \n\nAlong the way you'll learn about basic Regex syntax, [character classes](https://www.regular-expressions.info/refcharclass.html), [quantifiers](https://www.regular-expressions.info/refrepeat.html), [metacharacters](https://www.regular-expressions.info/characters.html) and more.",
98
},
109
{
1110
slug: 'http',
1211
name: 'Build your own HTTP Server',
1312
development_status: 'in-progress',
14-
development_status_label: 'in progress',
1513
description_md:
1614
"[HTTP](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol) is the protocol that powers the web. In this challenge, you'll build a HTTP/1.1 server that is capable of serving multiple clients. \n\nAlong the way you'll learn about TCP servers, [HTTP request syntax](https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html), HTTP/1.1's [request pipelining](https://en.wikipedia.org/wiki/HTTP_pipelining) and more.",
1715
},
@@ -27,7 +25,6 @@ export default [
2725
name: 'Build your own SQLite',
2826
is_archived: true,
2927
development_status: 'released',
30-
development_status_label: 'released',
3128
description_md:
3229
"[SQLite](https://www.sqlite.org/index.html) is the most used database engine in the world. In this challenge, you'll build your own version of SQLite that is capable of reading a SQLite database file and answering basic SQL queries like `SELECT` and `INSERT`. \n\nAlong the way, you'll learn about the [SQLite file format](https://www.sqlite.org/appfileformat.html), [SQL syntax](https://www.sqlite.org/lang.html) and more.",
3330
},

mirage/utils/create-course-extension-ideas.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function createCourseExtensionIdeas(server) {
77
createdAt: new Date(),
88
descriptionMarkdown: courseExtensionIdeaData.description_md,
99
developmentStatus: courseExtensionIdeaData.development_status,
10-
developmentStatusLabelText: courseExtensionIdeaData.development_status_label,
10+
developmentStatusLabelText: courseExtensionIdeaData.development_status,
1111
name: courseExtensionIdeaData.name,
1212
slug: courseExtensionIdeaData.slug,
1313
votesCount: 0,

mirage/utils/create-course-ideas.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function createCourseIdeas(server) {
66
createdAt: new Date(),
77
descriptionMarkdown: courseIdeaData.description_md,
88
developmentStatus: courseIdeaData.development_status,
9-
developmentStatusLabelText: courseIdeaData.development_status_label,
9+
developmentStatusLabelText: courseIdeaData.development_status,
1010
name: courseIdeaData.name,
1111
votesCount: 0,
1212
});

0 commit comments

Comments
 (0)