From 26a655a5031e7e3992996f9bade8d1a256b7ad6f Mon Sep 17 00:00:00 2001 From: lindqva Date: Tue, 14 Nov 2017 13:29:44 +0100 Subject: [PATCH] Clarify that sq_newclass pushes the new class in the stack. --- doc/source/reference/api/object_creation_and_handling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/reference/api/object_creation_and_handling.rst b/doc/source/reference/api/object_creation_and_handling.rst index 9cc60d2..289b954 100644 --- a/doc/source/reference/api/object_creation_and_handling.rst +++ b/doc/source/reference/api/object_creation_and_handling.rst @@ -355,7 +355,7 @@ creates a new array and pushes it in the stack :param SQBool hasbase: if the parameter is true the function expects a base class on top of the stack. :returns: a SQRESULT -creates a new class object. If the parameter 'hasbase' is different than 0, the function pops a class from the stack and inherits the new created class from it. +creates a new class object. If the parameter 'hasbase' is different than 0, the function pops a class from the stack and inherits the new created class from it. The new class is pushed in the stack.