Skip to content

Commit 5ce6b00

Browse files
authored
Merge pull request #305 from wurrrrrrrrrr/master
Fix grammar in the /proc file system section
2 parents 96768bd + 64353ac commit 5ce6b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lkmpg.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1230,7 +1230,7 @@ \subsection{Manage /proc file with seq\_file}
12301230
As we have seen, writing a \verb|/proc| file may be quite ``complex''.
12311231
So to help people writing \verb|/proc| file, there is an API named \cpp|seq_file| that helps formatting a \verb|/proc| file for output.
12321232
It is based on sequence, which is composed of 3 functions: \cpp|start()|, \cpp|next()|, and \cpp|stop()|.
1233-
The \cpp|seq_file| API starts a sequence when a user read the \verb|/proc| file.
1233+
The \cpp|seq_file| API starts a sequence when a user reads the \verb|/proc| file.
12341234

12351235
A sequence begins with the call of the function \cpp|start()|.
12361236
If the return is a non \cpp|NULL| value, the function \cpp|next()| is called; otherwise, the \cpp|stop()| function is called directly.

0 commit comments

Comments
 (0)