Skip to content
This repository was archived by the owner on Jan 21, 2026. It is now read-only.

Commit 12983c0

Browse files
authored
Merge pull request #259 from markpatterson27/patch-1
Fix missing back tick ` in AZ400_M03_Integrating_External_Source_Cont…
2 parents c4b4d43 + 05aedbe commit 12983c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Instructions/Labs/AZ400_M03_L06_Integrating_External_Source_Control_with_Azure_Pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ In this task, you will correct the invalid changes introduced in the pull reques
169169
> **Note**: It appears that the changes were made by someone who didn't realize that the plus signs before each variable were necessary to coerce those variables to their number representations. By removing them, JavaScript interpreted the middle plus sign as the string concatenation operator, which explains why 21 + 21 = 2121 in the failed test.
170170
171171
1. On the **Modifying the add function #1** GitHub page, click the ellipsis symbol directly under the **Review changes** button and, in the drop-down menu, click **Edit file**.
172-
1. Revert the original changes by adding the plus signs in front of the **a** and **b** variables, resulting in 'add': function(a,b) { return +a + +b },`. In addition, include a comment on the preceding line stating`// Using + operator to type cast variables as integers in order to prevent string concatenation`.
172+
1. Revert the original changes by adding the plus signs in front of the **a** and **b** variables, resulting in `'add': function(a,b) { return +a + +b },`. In addition, include a comment on the preceding line stating `// Using + operator to type cast variables as integers in order to prevent string concatenation`.
173173
1. Scroll to the bottom of the page, replace the default commit message with **Fixing the add function**, ensure that the option to **Commit directly to the addition-cleanup branch** is selected, and click **Commit changes**.
174174
1. On the **Modifying the add function #1** GitHub page, select the **Conversation** tab.
175175

0 commit comments

Comments
 (0)