Skip to content

Commit c718d2c

Browse files
committed
fix bad image atr
1 parent 2e8330e commit c718d2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/get-started/tutorial-console-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ You can also hover over variables in the code to see their current values at the
325325

326326
The program is doing what's expected: it takes the first number, and divides it by the second. On the `cout` line, hover over the `result` variable or take a look at `result` in the **Autos** window. Its value is `inf`, which doesn't look right.
327327

328-
:::image type="complex" source="./media/calc-vs2022-debug-inf.png" alt-text="Screenshot of debugging the calculator".:::
328+
:::image type="complex" source="./media/calc-vs2022-debug-inf.png" alt-text="Screenshot of debugging the calculator.":::
329329
The current statement in the debugger is cout << "Result is: " << result << endl; In the autos window, result is inf.
330330
:::image-end:::
331331

@@ -720,7 +720,7 @@ You can also hover over variables in the code itself to see their current values
720720

721721
The program is doing what's expected: it takes the first number, and divides it by the second. On the `cout` line, hover over the `result` variable or take a look at `result` in the **Autos** window. Its value is `inf`, which doesn't look right.
722722

723-
:::image type="complex" source="./media/calc-vs2017-debug-inf.png" alt-text="Screenshot of debugging the calculator".:::
723+
:::image type="complex" source="./media/calc-vs2017-debug-inf.png" alt-text="Screenshot of debugging the calculator.":::
724724
The current statement in the debugger is cout << "Result is: " << result << endl; In the autos window, result is inf.
725725
:::image-end:::
726726

0 commit comments

Comments
 (0)