From 72cb3a9eb5441abc26d05929a0aa815a93dc94c1 Mon Sep 17 00:00:00 2001 From: i582 <51853996+i582@users.noreply.github.com> Date: Tue, 4 Feb 2025 16:03:28 +0400 Subject: [PATCH] review fixes --- docs/src/content/docs/ref/core-base.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/ref/core-base.mdx b/docs/src/content/docs/ref/core-base.mdx index 1bfb1a368..e23150d18 100644 --- a/docs/src/content/docs/ref/core-base.mdx +++ b/docs/src/content/docs/ref/core-base.mdx @@ -8,9 +8,9 @@ prev: Every [contract](/book/contracts) in Tact implicitly [inherits](/book/contracts#traits) the `BaseTrait{:tact}` trait, which contains a number of the most useful [internal functions](/book/contracts#internal-functions) for any kind of contract, and a constant `self.storageReserve{:tact}` aimed at advanced users of Tact. -:::note +:::tip - Before 1.6.0, `BaseTrait{:tact}` was also implicitly inherited by traits, but now you need to explicitly specify `with BaseTrait{:tact}` for your traits. + Prior to 1.6.0, `BaseTrait{:tact}` was also implicitly inherited by traits, but now you must explicitly specify `with BaseTrait{:tact}` for your traits to use it. :::