1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Fix doc links

This commit is contained in:
vrana 2012-08-10 14:21:51 -07:00
parent 0597e765de
commit b2c9edd17d
6 changed files with 9 additions and 8 deletions

View file

@ -135,7 +135,8 @@ handling and makes it easier to get right than wrong:
Filesystem::writeFile('file.bak', $data); // Best Filesystem::writeFile('file.bak', $data); // Best
do_something_dangerous(); do_something_dangerous();
See @{article:System Commands} for details on the APIs used in this example. See @{article@libphutil:Command Execution} for details on the APIs used in this
example.
= Documentation, Comments and Formatting = = Documentation, Comments and Formatting =

View file

@ -60,7 +60,7 @@ You can see this class at @{class:PhabricatorTrivialTestCase} and run it with:
PASS <1ms* testAllIsRightWithTheWorld PASS <1ms* testAllIsRightWithTheWorld
For more information on writing tests, see For more information on writing tests, see
@{class@arcnaist:ArcanistPhutilTestCase} and @{class:PhabricatorTestCase}. @{class@arcanist:ArcanistPhutilTestCase} and @{class:PhabricatorTestCase}.
= Database Isolation = = Database Isolation =

View file

@ -56,4 +56,4 @@ Continue by:
- Filing a bug of feature request in - Filing a bug of feature request in
[[http://secure.phabricator.com/maniphest/task/create/ | Maniphest]]; or [[http://secure.phabricator.com/maniphest/task/create/ | Maniphest]]; or
- contributing to Phabricator with @{article:Contibutor Introduction}. - contributing to Phabricator with @{article:Contributor Introduction}.

View file

@ -47,7 +47,7 @@ Console", implemented by @{class:PhabricatorConduitConsoleController} at
##/conduit/##. ##/conduit/##.
A log of connections and calls is stored by A log of connections and calls is stored by
@{class:PhabriatorConduitConnectionLog} and @{class:PhabricatorConduitConnectionLog} and
@{class:PhabricatorConduitMethodCallLog}, and can be accessed on the web via @{class:PhabricatorConduitMethodCallLog}, and can be accessed on the web via
@{class:PhabricatorConduitLogController} at ##/conduit/log/##. @{class:PhabricatorConduitLogController} at ##/conduit/log/##.

View file

@ -67,7 +67,7 @@ Additionally, Arcanist ships with some general purpose linters:
mistakes. mistakes.
- @{class@arcanist:ArcanistFilenameLinter}, which can enforce generally - @{class@arcanist:ArcanistFilenameLinter}, which can enforce generally
sensible rules about not giving files nonsense names. sensible rules about not giving files nonsense names.
- @{class@arcanist:ArcanistLicenseLinter.php}, which can make sure license - @{class@arcanist:ArcanistLicenseLinter}, which can make sure license
headers are applied to all source files. headers are applied to all source files.
- @{class@arcanist:ArcanistNoLintLinter}, which can disable lint for files - @{class@arcanist:ArcanistNoLintLinter}, which can disable lint for files
marked unlintable. marked unlintable.

View file

@ -132,9 +132,9 @@
* $pugs = $dog->loadAllWhere('breed = %s', 'Pug'); * $pugs = $dog->loadAllWhere('breed = %s', 'Pug');
* $sawyer = $dog->loadOneWhere('name = %s', 'Sawyer'); * $sawyer = $dog->loadOneWhere('name = %s', 'Sawyer');
* *
* These methods work like @{function:queryfx}, but only take half of a query * These methods work like @{function@libphutil:queryfx}, but only take half of
* (the part after the WHERE keyword). Lisk will handle the connection, columns, * a query (the part after the WHERE keyword). Lisk will handle the connection,
* and object construction; you are responsible for the rest of it. * columns, and object construction; you are responsible for the rest of it.
* @{method:loadAllWhere} returns a list of objects, while * @{method:loadAllWhere} returns a list of objects, while
* @{method:loadOneWhere} returns a single object (or `null`). * @{method:loadOneWhere} returns a single object (or `null`).
* *