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

Correct grammar mistakes #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion input/chapter04/chapter04.xml
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ run next. All possible tasks are kept on a
<emphasis>run queue</emphasis>, which is simply a linked list of
processes which the kernel knows are in a "runnable" state (i.e. not
waiting on disk activity or otherwise asleep). The problem arises
that to calculate the next process to run, every possible runnable
when to calculate the next process to run, every possible runnable
process must have its goodness calculated and the one with the highest
goodness ``wins''. You can see that for more tasks, it will take
longer and longer to decide which processes will run next.</para>
Expand Down
2 changes: 1 addition & 1 deletion input/chapter06/chapter06.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<para>The first step of compiling a source file to an executable
file is converting the code from the high level, human
understandable language to <emphasis>assembly code</emphasis>. We
know from previous chapters than assembly code works directly with
know from previous chapters that assembly code works directly with
the instructions and registers provided by the processor.</para>
<para>The compiler is the most complex step of process for a
number of reasons. Firstly, humans are very unpredictable and
Expand Down