From 73fabb4250a186b62437a1f6d7dd136e87b95603 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Wed, 4 Aug 2021 23:04:22 +0700 Subject: [PATCH] Fix docs about `StaticConstructor()` --- sources/Types/AcediaActor.uc | 4 ++-- sources/Types/AcediaObject.uc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sources/Types/AcediaActor.uc b/sources/Types/AcediaActor.uc index 5fd90c5..4b78f95 100644 --- a/sources/Types/AcediaActor.uc +++ b/sources/Types/AcediaActor.uc @@ -166,8 +166,8 @@ protected function Constructor(){} /** * When using proper methods for creating objects (`MemoryAPI`), - * this method is guaranteed to be called after object of this (or it's child) - * class is allocated. + * this method is guaranteed to be called after object of this class is + * allocated. * * If you overload this method, first two lines must always be * ____________________________________________________________________________ diff --git a/sources/Types/AcediaObject.uc b/sources/Types/AcediaObject.uc index 8715e09..4281877 100644 --- a/sources/Types/AcediaObject.uc +++ b/sources/Types/AcediaObject.uc @@ -167,8 +167,8 @@ protected function Constructor(){} /** * When using proper methods for creating objects (`MemoryAPI`), - * this method is guaranteed to be called after object of this (or it's child) - * class is allocated. + * this method is guaranteed to be called after object of this class is + * allocated. * * If you overload this method, first two lines must always be * ____________________________________________________________________________