Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move phrase to the correct paragraph #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions book/book.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4145,11 +4145,11 @@ \section{Debugging}
one space. But the error message points to {\tt y}, which is
misleading. In general, error messages indicate where the problem was
discovered, but the actual error might be earlier in the code,
sometimes on a previous line.
sometimes on a previous line. The same is true of runtime errors.
\index{error!runtime}
\index{runtime error}

The same is true of runtime errors. Suppose you are trying
Suppose you are trying
to compute a signal-to-noise ratio in decibels. The formula
is $SNR_{db} = 10 \log_{10} (P_{signal} / P_{noise})$. In Python,
you might write something like this:
Expand Down