* static int Win32::UnregisterFunction(string FunctionName)
* ---------------------------------------------------------
*
- * Allows the PHP programmer to force a funciton to be unregistered saving on memory resources. Can
+ * Allows the PHP programmer to force a function to be unregistered saving on memory resources. Can
* be useful in long running scripts.
*
* Returns TRUE on success, FALSE on error.
if(zend_hash_add(&WG(win32_ce)->function_table, (*fh)->function_name,
strlen((*fh)->function_name) + 1, &function, sizeof(zend_function), NULL) == FAILURE)
{
- php_error(E_ERROR, "Could not register funciton %s into function table", (*fh)->function_name);
+ php_error(E_ERROR, "Could not register function %s into function table", (*fh)->function_name);
zend_hash_del(WG(funcs), (*fh)->function_name, strlen((*fh)->function_name) +1);
return FAILURE;;
/* }}} */
-#endif /* HAVE_W32API */
\ No newline at end of file
+#endif /* HAVE_W32API */