From b7be6dbf324c23c9df0920c6670dc732d3cdc630 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 17 Mar 2011 19:19:31 -0700 Subject: [PATCH] Fix symbol reference in arcconfig.diviner (thanks, jason!) --- src/docs/arcconfig.diviner | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/docs/arcconfig.diviner b/src/docs/arcconfig.diviner index 0ae197e2..4ac19c9f 100644 --- a/src/docs/arcconfig.diviner +++ b/src/docs/arcconfig.diviner @@ -6,7 +6,7 @@ Explains how to configure Arcanist projects with ##.arcconfig## files. = .arcconfig Basics = Arcanist uses ##.arcconfig## files to determine a number of things about project -configuration. For instance, these are things it figures out from +configuration. For instance, these are things it figures out from ##.arcconfig##: - where the logical root directory of a project is; @@ -20,28 +20,28 @@ A simple, valid file looks something like this: "project_id" : "some_project_name", "conduit_uri" : "https://phabricator.example.com/api/" } - + Here's what these options mean: - **project_id**: a human-readable string identifying the project - **conduit_uri**: the Conduit API URI for the Phabricator installation that Arcanist should send diffs to for review. Generally, if you access Phabricator at ##https://phabricator.example.com/##, the **conduit_uri** is - ##https://phabricator.example.com/api/##. Be mindful about "http" vs + ##https://phabricator.example.com/api/##. Be mindful about "http" vs "https". - + For an exhaustive list of available options, see below. = Advanced .arcconfig = Other options include: - - **lint_engine**: the name of a subclass of @{class:ArcanistLintEngine}, + - **lint_engine**: the name of a subclass of @{class:ArcanistLintEngine}, which should be used to apply lint rules to this project. See (TODO). - - **unit_engine**: the name of a subclass of - @{class:ArcanistBaseUnitTestEngine.php}, which should be used to apply unit + - **unit_engine**: the name of a subclass of + @{class:ArcanistBaseUnitTestEngine}, which should be used to apply unit test rules to this project. See (TODO). - - **arcanist_configuration**: the name of a subclass of + - **arcanist_configuration**: the name of a subclass of @{class:ArcanistConfiguration} which can add new command flags for this project or provide entirely new commands. - **remote_hooks_installed**: tells Arcanist that you've set up remote hooks