Skip to content

Commit

Permalink
Fix some of example
Browse files Browse the repository at this point in the history
  • Loading branch information
mjdecker committed Mar 26, 2024
1 parent 65eea92 commit 62267ce
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions _projects/software-testing/coverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,20 +73,20 @@ layout: markdown
* Example Before:
<pre>
//// @file main1.cpp
#include &lt;iostream&gt;

int main() {
int i;
i = 0;
while (i < 10) {
++i;
std::cout << i;
}
std::cout << '\n';
return 0;
}
//// @file main1.cpp
#include &lt;iostream&gt;

int main() {
int i;
i = 0;
while (i < 10) {
++i;
std::cout << i;
}
std::cout << '\n';
return 0;
}

/// @file foo.cpp

int foo() {
Expand Down

0 comments on commit 62267ce

Please sign in to comment.