Browse Source

Update README.md

nxrighthere 7 years ago
parent
commit
f7c555be8e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -130,7 +130,7 @@ FreeCallback OnMemoryFree = (memory) => {
 };
 
 OutOfMemoryCallback OnOutOfMemory = () => {
-	throw new OutOfMemoryException("Out of memory");
+	throw new OutOfMemoryException();
 };
 
 callbacks = new Callbacks(OnMemoryAllocate, OnMemoryFree, OnOutOfMemory);