Skip to content

Commit

Permalink
Fix documentation grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
brackeen committed Jun 7, 2023
1 parent 1ade0ee commit b71b24d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/glfm.h
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ GLFMMouseWheelFunc glfmSetMouseWheelFunc(GLFMDisplay *display, GLFMMouseWheelFun
/// If the hardware sensor is not available, this function does nothing.
/// See ``glfmIsSensorAvailable``.
///
/// Each ``GLFMSensor`` type can have it's own ``GLFMSensorFunc``.
/// Each ``GLFMSensor`` type can have its own ``GLFMSensorFunc``.
///
/// The hardware sensor is enabled when the `sensorFunc` is not `NULL`.
///
Expand Down
2 changes: 1 addition & 1 deletion src/glfm_apple.m
Original file line number Diff line number Diff line change
Expand Up @@ -2487,7 +2487,7 @@ - (void)flagsChanged:(NSEvent *)event {
if (event.keyCode == kVK_Function) {
// The fn key cannot be determined from `modifierFlags` because the
// `NSEventModifierFlagFunction` flag is also used for other keys, like the arrow keys.
// So, keep track of it's state.
// So, keep track of its state.
self.fnModifier = pressed;
}
GLFMKeyAction action = pressed ? GLFMKeyActionPressed : GLFMKeyActionReleased;
Expand Down

0 comments on commit b71b24d

Please sign in to comment.