Docs: Removes an irrelevant `@link` mention in `Translation_Entry` Class.

See #54729.

Built from https://develop.svn.wordpress.org/trunk@53180


git-svn-id: http://core.svn.wordpress.org/trunk@52769 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2022-04-14 09:18:08 +00:00
parent c5a34f9397
commit 44e4439d68
2 changed files with 4 additions and 4 deletions

View File

@ -9,12 +9,12 @@
if ( ! class_exists( 'Translation_Entry', false ) ) : if ( ! class_exists( 'Translation_Entry', false ) ) :
/** /**
* Translation_Entry class encapsulates a translatable string * Translation_Entry class encapsulates a translatable string.
*/ */
class Translation_Entry { class Translation_Entry {
/** /**
* Whether the entry contains a string and its plural form, default is false * Whether the entry contains a string and its plural form, default is false.
* *
* @var bool * @var bool
*/ */
@ -36,7 +36,7 @@ if ( ! class_exists( 'Translation_Entry', false ) ) :
* @type string $singular The string to translate, if omitted an * @type string $singular The string to translate, if omitted an
* empty entry will be created. * empty entry will be created.
* @type string $plural The plural form of the string, setting * @type string $plural The plural form of the string, setting
* this will set {@link $is_plural} to true. * this will set `$is_plural` to true.
* @type array $translations Translations of the string and possibly * @type array $translations Translations of the string and possibly
* its plural forms. * its plural forms.
* @type string $context A string differentiating two equal strings * @type string $context A string differentiating two equal strings

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.0-beta1-53179'; $wp_version = '6.0-beta1-53180';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.