From f7a205975f7302c0ebd14e44c7178a50b0038d29 Mon Sep 17 00:00:00 2001 From: nickfelt Date: Fri, 7 Oct 2016 16:36:56 -0700 Subject: [PATCH] Improve minor readability aspects of Admin Tool docs ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=135531947 --- docs/admin-tool.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/admin-tool.md b/docs/admin-tool.md index 01e37a9f6..134d60350 100644 --- a/docs/admin-tool.md +++ b/docs/admin-tool.md @@ -2,10 +2,10 @@ Nomulus includes a command-line registry administration tool that is invoked using the `nomulus` command. It has the ability to view and change a large -number of things in a running Nomulus environment, including creating -registrars, updating premium and reserved lists, running an EPP command from a -given XML file, and performing various backend tasks like re-running RDE if the -most recent export failed. Its code lives inside the tools package +number of things in a live Nomulus environment, including creating registrars, +updating premium and reserved lists, running an EPP command from a given XML +file, and performing various backend tasks like re-running RDE if the most +recent export failed. Its code lives inside the tools package (`java/google/registry/tools`), and is compiled by building the `nomulus` target in the Bazel BUILD file in that package. @@ -68,11 +68,11 @@ server-side command otherwise. ## Common tool patterns All tools ultimately implement the `Command` interface located in the `tools` -package. If you use an IDE such as Eclipse to view the type hierarchy of that -interface, you'll see all of the commands that exist, as well as how a lot of -them are grouped using sub-interfaces or abstract classes that provide -additional functionality. The most common patterns that are used by a large -number of other tools are: +package. If you use an integrated development environment (IDE) such as Eclipse +to view the type hierarchy of that interface, you'll see all of the commands +that exist, as well as how a lot of them are grouped using sub-interfaces or +abstract classes that provide additional functionality. The most common patterns +that are used by a large number of other tools are: * **`BigqueryCommand`** -- Provides a connection to BigQuery for tools that need it.