Skip to content

Commit

Permalink
Fix minor typo in Section and Lesson titles (#4850)
Browse files Browse the repository at this point in the history
Change Javascript to JavaScript in lesson and section titles
  • Loading branch information
kysch13 authored Nov 12, 2024
1 parent 721a030 commit 0a482dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions db/fixtures/lessons/javascript_lessons.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions db/fixtures/paths/full_stack_javascript/courses/javascript.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
4 changes: 2 additions & 2 deletions db/fixtures/paths/full_stack_rails/courses/javascript.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down

0 comments on commit 0a482dd

Please sign in to comment.