Browse Source

* Fix typo

Michael Van Canneyt 4 months ago
parent
commit
92d68bb0fa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl/src/weborworker.pas

+ 1 - 1
packages/rtl/src/weborworker.pas

@@ -2131,7 +2131,7 @@ end;
 function IsServiceWorker :boolean; assembler;
 
 asm
-  Return (typeof ServiceWorkerGlobalScope !== 'undefined') && (self instanceof ServiceWorkerGlobalScope);
+  return (typeof ServiceWorkerGlobalScope !== 'undefined') && (self instanceof ServiceWorkerGlobalScope);
 end;
 
 end.