Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rianquinn authored Oct 21, 2021
1 parent 7494468 commit e11365c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ main(bsl::int32 const argc, bsl::cstr_type const *const argv) noexcept
}

for (bsl::safe_idx mut_i{}; mut_i < mut_arr.size(); ++mut_i) {
bsl::print() << " elem[" // --
<< mut_i // --
<< "] == " // --
<< bsl::fmt{"#010x", *mut_arr.at_if(mut_i)} // --
<< bsl::endl; // --
bsl::print() << "elem["
<< mut_i
<< "] == "
<< bsl::fmt{"#010x", *mut_arr.at_if(mut_i)}
<< bsl::endl;
}

return bsl::exit_success;
Expand Down

0 comments on commit e11365c

Please sign in to comment.