microsoft / studentambassadors

This repository is for Microsoft Learn Student Ambassadors.
MIT License
130 stars 47 forks source link

Introduction of "Note" to Enhance Better Understanding #82

Closed Devbysteph closed 1 year ago

Devbysteph commented 1 year ago

Describe the bug

The step 2 in 4-exercise-setting-getting-values-from-variables.md, has an additional Point which is important to be noted by the reader, however, the point is embedded in line with the content of "Step 2".

The Addition of a note will ensure easy readability and proper grasping of the content.

To Reproduce

I suggest that the point is highlighted as an important point to note in the step, I describe it further below.

Expected behavior

The expected behavior is to have an additional note to step 2 to help the reader understand that it is important to note the point. Here is the expected structure for "Step 2"

Step 2: Declare a variable and assign a value to it

To assign a value to a variable, you use the assignment operator, which is a single equals character =.

Add the following code in the code editor:

string firstName;
firstName = "Bob";

[!NOTE] Assigning a value is also referred to as "setting the variable", or simply, a "set" operation.

Screenshots

This is a screenshot of what is currently available in the lesson step:

image

This is the proposed expected behaviour to enhance the readability and ensure that the reader takes note of the important point:

image

Desktop (please complete the following information):

Smartphone (please complete the following information):

Additional context

Add any other context about the problem here.


🎓 Add a tag to this issue for your current education role: student, Student Ambassador or educator.

Student, Student Ambassador


eric-camplin commented 1 year ago

@Devbysteph good issue, I submitted fixed as proposed in a pull request to the author - Thanks!