Merge "Fix typo and improve code comments in LinkTarget"
This commit is contained in:
commit
2a1fcd27c1
1 changed files with 5 additions and 6 deletions
|
|
@ -8,29 +8,28 @@
|
|||
interface LinkTarget {
|
||||
|
||||
/**
|
||||
* Get the namespace index
|
||||
* Get the namespace index.
|
||||
*
|
||||
* @return int Namespace index
|
||||
*/
|
||||
public function getNamespace();
|
||||
|
||||
/**
|
||||
* Get the link fragment (i.e.\ the bit after the #) in text form
|
||||
* Get the link fragment (i.e. the bit after the #) in text form.
|
||||
*
|
||||
* @return string link fragment
|
||||
*/
|
||||
public function getFragment();
|
||||
|
||||
/**
|
||||
* Get the main part with underscores
|
||||
* Get the main part with underscores.
|
||||
*
|
||||
* @return string Main part of the link, with underscores (for use in hrf attributes)
|
||||
* @return string Main part of the link, with underscores (for use in href attributes)
|
||||
*/
|
||||
public function getDBkey();
|
||||
|
||||
/**
|
||||
* Returns the link in text form,
|
||||
* without namespace prefix or fragment.
|
||||
* Returns the link in text form, without namespace prefix or fragment.
|
||||
*
|
||||
* This is computed from the DB key by replacing any underscores with spaces.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue