Improve minor readability aspects of Admin Tool docs

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=135531947
This commit is contained in:
nickfelt 2016-10-07 16:36:56 -07:00 committed by Ben McIlwain
parent 12734a33b5
commit f7a205975f

View file

@ -2,10 +2,10 @@
Nomulus includes a command-line registry administration tool that is invoked 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 using the `nomulus` command. It has the ability to view and change a large
number of things in a running Nomulus environment, including creating number of things in a live Nomulus environment, including creating registrars,
registrars, updating premium and reserved lists, running an EPP command from a updating premium and reserved lists, running an EPP command from a given XML
given XML file, and performing various backend tasks like re-running RDE if the file, and performing various backend tasks like re-running RDE if the most
most recent export failed. Its code lives inside the tools package recent export failed. Its code lives inside the tools package
(`java/google/registry/tools`), and is compiled by building the `nomulus` target (`java/google/registry/tools`), and is compiled by building the `nomulus` target
in the Bazel BUILD file in that package. in the Bazel BUILD file in that package.
@ -68,11 +68,11 @@ server-side command otherwise.
## Common tool patterns ## Common tool patterns
All tools ultimately implement the `Command` interface located in the `tools` 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 package. If you use an integrated development environment (IDE) such as Eclipse
interface, you'll see all of the commands that exist, as well as how a lot of to view the type hierarchy of that interface, you'll see all of the commands
them are grouped using sub-interfaces or abstract classes that provide that exist, as well as how a lot of them are grouped using sub-interfaces or
additional functionality. The most common patterns that are used by a large abstract classes that provide additional functionality. The most common patterns
number of other tools are: that are used by a large number of other tools are:
* **`BigqueryCommand`** -- Provides a connection to BigQuery for tools that * **`BigqueryCommand`** -- Provides a connection to BigQuery for tools that
need it. need it.