Skip to content

Commit

Permalink
avoid the word 'code' (#1795)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-henz committed Jun 16, 2021
1 parent 872bed5 commit 11d3a16
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/pages/githubAssessments/GitHubAssessmentDefaultValues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ Everything here is written in Markdown.
This means that you can **bolden** or *italicize* text by adding asterisks.
Code-blocks can be formatted through the use of backticks:
Programs can be formatted through the use of triple backticks:
\`\`\`
// This is a code example
// This is a program example
\`\`\`
If you want to in-line code, rather than display a whole code-block, you can also do \`this\`.
If you want to in-line program snippets, rather than display it as a block, you can also use single backticks like \`this\`.
Lists can be created by adding dashes to the start of a line:
- First element
Expand Down Expand Up @@ -48,11 +48,11 @@ Everything here is written in Markdown.
This means that you can **bolden** or *italicize* text by adding asterisks.
Code-blocks can be formatted through the use of backticks:
Programs can be formatted through the use of triple backticks:
\`\`\`
// This is a code example
// This is a program example
\`\`\`
If you want to in-line code, rather than display a whole code-block, you can also do \`this\`.
If you want to in-line program snippets, rather than display it as a block, you can also use single backticks like \`this\`.
Lists can be created by adding dashes to the start of a line:
- First element
Expand All @@ -67,7 +67,7 @@ It is also possible to embed images, like this:
If you need a more detailed cheatsheet, please click [here](https://www.markdownguide.org/cheat-sheet/)!
`;

export const defaultStarterCode = '// Your code here!\n';
export const defaultStarterCode = '// Your program here!\n';

export const defaultMissionMetadata = {
coverImage: '',
Expand Down

0 comments on commit 11d3a16

Please sign in to comment.