Skip to content
Snippets Groups Projects
Commit 257f7e14 authored by Sandipan Mohanty's avatar Sandipan Mohanty
Browse files

Fix many typos in book chapters

parent 389ae7bf
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -37,11 +37,14 @@ void showbits(float var)
void showbits(auto var)
{
std::cout << "bits for " << var << " with non-floating point type . " << bits(var) << "\n";
std::cout << "bits for " << var << " with non-floating point type : " << bits(var) << "\n";
}
int main()
{
showbits(1);
showbits(1U - 2U);
showbits(-1);
showbits(1.0);
showbits(1.25);
showbits(1.25F);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment