Skip to content

Commit

Permalink
Fix typo in capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
hmelder committed Sep 8, 2024
1 parent 9796196 commit 6b50aaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion caps.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
static const int32_t caps =
(1<<OBJC_CAP_EXCEPTIONS) |
(1<<OBJC_CAP_SYNCRONIZE) |
(1<<OBJC_CAP_SYNCHRONIZE) |
(1<<OBJC_CAP_PROPERTIES) |
(1<<OBJC_CAP_PROPERTY_INTROSPECTION) |
(1<<OBJC_CAP_OPTIONAL_PROTOCOLS) |
Expand Down
2 changes: 1 addition & 1 deletion objc/capabilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ extern "C" {
/**
* The runtime supports the @synchronize directive.
*/
#define OBJC_CAP_SYNCRONIZE 1
#define OBJC_CAP_SYNCHRONIZE 1
/**
* The runtime supports property accessors.
*/
Expand Down

0 comments on commit 6b50aaf

Please sign in to comment.