Skip to content

Commit d8a5eba

Browse files
committed
Change comma to colon in example strings.
1 parent b4359d6 commit d8a5eba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/modal/NewModuleNameModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ export const TITLE_COPY_OPMODE = 'Copy OpMode';
4343

4444
const DESCRIPTION = 'No spaces are allowed in the name. Each word in the name should start with a capital letter.';
4545

46-
export const EXAMPLE_MECHANISM = 'For example, GamePieceShooter';
47-
export const EXAMPLE_OPMODE = 'For example, AutoParkAndShoot';
46+
export const EXAMPLE_MECHANISM = 'For example: GamePieceShooter';
47+
export const EXAMPLE_OPMODE = 'For example: AutoParkAndShoot';
4848
export const LABEL_MECHANISM = 'Mechanism Name:';
4949
export const LABEL_OPMODE = 'OpMode Name:';
5050

src/modal/NewProjectNameModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const TITLE_COPY_PROJECT = 'Copy Project';
4242
export const MESSAGE_WELCOME = 'Let\'s create your first project. You just need to give it a name.';
4343

4444
const DESCRIPTION = 'No spaces are allowed in the name. Each word in the name should start with a capital letter.';
45-
const EXAMPLE = 'For example, WackyWheelerRobot';
45+
const EXAMPLE = 'For example: WackyWheelerRobot';
4646
const LABEL = 'Project Name:';
4747

4848
type NewProjectNameModalProps = {

0 commit comments

Comments
 (0)