Fix spelling of entitlement in code_patcher.cc

Closes https://github.com/dart-lang/sdk/pull/60242

GitOrigin-RevId: da68fe5ee69099dea6441c13308359ae44f9fcaf
Change-Id: I5cc63034af05a0673da51c6b939c9b626f3a0c24
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/413241
Commit-Queue: Slava Egorov <vegorov@google.com>
Reviewed-by: Slava Egorov <vegorov@google.com>
diff --git a/runtime/vm/code_patcher.cc b/runtime/vm/code_patcher.cc
index 72ec8f8..43786b4 100644
--- a/runtime/vm/code_patcher.cc
+++ b/runtime/vm/code_patcher.cc
@@ -13,8 +13,8 @@
 #if defined(DART_HOST_OS_MACOS) || defined(DART_HOST_OS_MACOS_IOS)
 // On iOS even with debugger attached we must still guarantee that memory
 // is never executable and writable at the same time. On Mac OS X
-// com.apple.security.cs.allow-jit entitelement allows WX memory regions to be
-// created - but we should not rely on this entitelement to be present.
+// com.apple.security.cs.allow-jit entitlement allows WX memory regions to be
+// created - but we should not rely on this entitlement to be present.
 static constexpr bool kShouldWriteProtectCodeByDefault = true;
 #else
 static constexpr bool kShouldWriteProtectCodeByDefault = false;