Back to Freecodecamp

Task 38

curriculum/challenges/english/blocks/learn-how-to-document-code-for-a-project/65e9932d9cab2348221a1139.md

latest2.0 KB
Original Source
<!-- (Audio) Brian: Good question. When you make changes, you should use descriptive commit messages. -->

--description--

Changes in this context means modifications or edits made in the code.

Descriptive means giving details about how something looks, feels, sounds, smells, or tastes. It is an adjective used to provide more information about a noun, making the description more vivid and clear. For example, in the sentence she wears a beautiful dress, the word beautiful is descriptive because it tells listeners more about the dress.

A message is a piece of information or communication that someone sends to another person. It can be written, spoken, or even sent through email or text.

--fillInTheBlank--

--sentence--

Good question. BLANK you make BLANK, you should use BLANK commit BLANK.

--blanks--

When

--feedback--

It refers to the time at which the code changes are made.


changes

--feedback--

These are the modifications or updates made to the code.


descriptive

--feedback--

This word indicates that the commit messages should be detailed and informative.


messages

--feedback--

In this context, it means the notes or comments written to explain what was done in a commit.

--scene--

json
{
  "setup": {
    "background": "company2-center.png",
    "characters": [
      {
        "character": "Brian",
        "position": {
          "x": 50,
          "y": 15,
          "z": 1.2
        },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "7.1-3.mp3",
      "startTime": 1,
      "startTimestamp": 6.6,
      "finishTimestamp": 11
    }
  },
  "commands": [
    {
      "character": "Brian",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Brian",
      "startTime": 1,
      "finishTime": 5.4,
      "dialogue": {
        "text": "Good question. When you make changes, you should use descriptive commit messages.",
        "align": "center"
      }
    },
    {
      "character": "Brian",
      "opacity": 0,
      "startTime": 5.9
    }
  ]
}