Skip to content

Commit 9ab13df

Browse files
author
Amanda Butler
authored
Make changes from comments to FileHandle.h
Address comments.
1 parent 3a8919b commit 9ab13df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

platform/FileHandle.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ class FileHandle : private NonCopyable<FileHandle> {
205205
}
206206

207207
/** Check for poll event flags
208-
* The input parameter can be used or ignored - the could always return all events,
209-
* or could check just the events listed in events.
208+
* You can use or ignore the input parameter. You can return all events
209+
* or check just the events listed in events.
210210
* Call is nonblocking - returns instantaneous state of events.
211211
* Whenever an event occurs, the derived class should call the sigio() callback).
212212
*
@@ -254,7 +254,7 @@ class FileHandle : private NonCopyable<FileHandle> {
254254
* as a building block for constructing such functionality.
255255
*
256256
* The exact timing of when the registered function
257-
* is called is not guaranteed and susceptible to change. It should be used
257+
* is called is not guaranteed and is susceptible to change. It should be used
258258
* as a cue to make read/write/poll calls to find the current state.
259259
*
260260
* @param func Function to call on state change

0 commit comments

Comments
 (0)