diff --git a/db/fixtures/lessons/javascript_lessons.rb b/db/fixtures/lessons/javascript_lessons.rb index 80dd9cc595..ed4255ec4d 100644 --- a/db/fixtures/lessons/javascript_lessons.rb +++ b/db/fixtures/lessons/javascript_lessons.rb @@ -14,8 +14,8 @@ def javascript_lessons github_path: '/javascript/introduction/a_quick_review.md', identifier_uuid: '428d54c7-3324-4ee2-afaf-08e1c373b314', }, - 'Organizing Your Javascript Code Introduction' => { - title: 'Organizing Your Javascript Code Introduction', + 'Organizing Your JavaScript Code Introduction' => { + title: 'Organizing Your JavaScript Code Introduction', description: 'introduction', is_project: false, github_path: '/javascript/organizing_your_javascript_code/organizing_your_javascript_code_introduction.md', diff --git a/db/fixtures/paths/full_stack_javascript/courses/javascript.rb b/db/fixtures/paths/full_stack_javascript/courses/javascript.rb index ec270760b1..9002c604ee 100644 --- a/db/fixtures/paths/full_stack_javascript/courses/javascript.rb +++ b/db/fixtures/paths/full_stack_javascript/courses/javascript.rb @@ -27,12 +27,12 @@ # SECTION - Organizing your JavaScript Code # +++++++++++++++++++++++++++++++++++++++++ course.add_section do |section| - section.title = 'Organizing Your Javascript Code' + section.title = 'Organizing Your JavaScript Code' section.description = 'This series digs in to the things you need to write larger and larger applications with JavaScript. This is where it gets real!' section.identifier_uuid = '8b5f0c45-60f5-4dd9-8491-86d5d98f4ed3' section.add_lessons( - javascript_lessons.fetch('Organizing Your Javascript Code Introduction'), + javascript_lessons.fetch('Organizing Your JavaScript Code Introduction'), javascript_lessons.fetch('Objects and Object Constructors'), javascript_lessons.fetch('Library'), javascript_lessons.fetch('Factory Functions and the Module Pattern'), diff --git a/db/fixtures/paths/full_stack_rails/courses/javascript.rb b/db/fixtures/paths/full_stack_rails/courses/javascript.rb index 0a182a5e12..dc3478a4fc 100644 --- a/db/fixtures/paths/full_stack_rails/courses/javascript.rb +++ b/db/fixtures/paths/full_stack_rails/courses/javascript.rb @@ -26,12 +26,12 @@ # SECTION - Organizing your JavaScript Code # +++++++++++++++++++++++++++++++++++++++++ course.add_section do |section| - section.title = 'Organizing Your Javascript Code' + section.title = 'Organizing Your JavaScript Code' section.description = 'This series digs in to the things you need to write larger and larger applications with JavaScript. This is where it gets real!' section.identifier_uuid = 'd0be5e66-0acc-4c62-8993-8d50e5af15a0' section.add_lessons( - javascript_lessons.fetch('Organizing Your Javascript Code Introduction'), + javascript_lessons.fetch('Organizing Your JavaScript Code Introduction'), javascript_lessons.fetch('Objects and Object Constructors'), javascript_lessons.fetch('Library'), javascript_lessons.fetch('Factory Functions and the Module Pattern'),