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:
parent
c5a34f9397
commit
44e4439d68
|
@ -9,12 +9,12 @@
|
|||
|
||||
if ( ! class_exists( 'Translation_Entry', false ) ) :
|
||||
/**
|
||||
* Translation_Entry class encapsulates a translatable string
|
||||
* Translation_Entry class encapsulates a translatable string.
|
||||
*/
|
||||
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
|
||||
*/
|
||||
|
@ -36,7 +36,7 @@ if ( ! class_exists( 'Translation_Entry', false ) ) :
|
|||
* @type string $singular The string to translate, if omitted an
|
||||
* empty entry will be created.
|
||||
* @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
|
||||
* its plural forms.
|
||||
* @type string $context A string differentiating two equal strings
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @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.
|
||||
|
|
Loading…
Reference in New Issue