Description
There is a typo in the Javadoc comment in core/src/driver/org/jnode/driver/input/AbstractPointerDriver.java. The word "recieve" should be "receive".
Location
- File:
core/src/driver/org/jnode/driver/input/AbstractPointerDriver.java
- Line: Contains
@param listener the pointer listener to recieve the event
Task
Change "recieve" to "receive" in the Javadoc @param comment.
Difficulty
Easy - Single word typo fix in a comment, no logic changes required, no testing needed.
Additional Context
This is part of a series of easy documentation fixes to improve code quality. Similar typos may exist elsewhere in the codebase (e.g., the previously fixed "directy" → "direct" in Unsafe.java).
Description
There is a typo in the Javadoc comment in
core/src/driver/org/jnode/driver/input/AbstractPointerDriver.java. The word "recieve" should be "receive".Location
core/src/driver/org/jnode/driver/input/AbstractPointerDriver.java@param listener the pointer listener to recieve the eventTask
Change "recieve" to "receive" in the Javadoc
@paramcomment.Difficulty
Easy - Single word typo fix in a comment, no logic changes required, no testing needed.
Additional Context
This is part of a series of easy documentation fixes to improve code quality. Similar typos may exist elsewhere in the codebase (e.g., the previously fixed "directy" → "direct" in Unsafe.java).