ref: Changes most simple uses of veyron to vanadium.
Change-Id: Iff7932446e512ef1c4cdd4b6efa96077a4e757e4
diff --git a/cmd/binary/doc.go b/cmd/binary/doc.go
index d181068..8f05bde 100644
--- a/cmd/binary/doc.go
+++ b/cmd/binary/doc.go
@@ -2,7 +2,7 @@
// DO NOT UPDATE MANUALLY
/*
-The binary tool facilitates interaction with the veyron binary repository.
+The binary tool facilitates interaction with the vanadium binary repository.
Usage:
binary <command>
@@ -62,7 +62,7 @@
Usage:
binary delete <von>
-<von> is the veyron object name of the binary to delete
+<von> is the vanadium object name of the binary to delete
Binary Download
@@ -72,8 +72,8 @@
Usage:
binary download <von> <filename>
-<von> is the veyron object name of the binary to download <filename> is the name
-of the file where the binary will be written
+<von> is the vanadium object name of the binary to download <filename> is the
+name of the file where the binary will be written
Binary Upload
@@ -84,18 +84,18 @@
Usage:
binary upload <von> <filename>
-<von> is the veyron object name of the binary to upload <filename> is the name
+<von> is the vanadium object name of the binary to upload <filename> is the name
of the file or directory to upload
Binary Url
-Connect to the binary repository and fetch the download URL for the given veyron
-object name.
+Connect to the binary repository and fetch the download URL for the given
+vanadium object name.
Usage:
binary url <von>
-<von> is the veyron object name of the binary repository
+<von> is the vanadium object name of the binary repository
Binary Help
diff --git a/cmd/binary/impl.go b/cmd/binary/impl.go
index 2739c01..259ccc4 100644
--- a/cmd/binary/impl.go
+++ b/cmd/binary/impl.go
@@ -14,7 +14,7 @@
Short: "Delete a binary",
Long: "Delete connects to the binary repository and deletes the specified binary",
ArgsName: "<von>",
- ArgsLong: "<von> is the veyron object name of the binary to delete",
+ ArgsLong: "<von> is the vanadium object name of the binary to delete",
}
func runDelete(cmd *cmdline.Command, args []string) error {
@@ -39,7 +39,7 @@
`,
ArgsName: "<von> <filename>",
ArgsLong: `
-<von> is the veyron object name of the binary to download
+<von> is the vanadium object name of the binary to download
<filename> is the name of the file where the binary will be written
`,
}
@@ -66,7 +66,7 @@
`,
ArgsName: "<von> <filename>",
ArgsLong: `
-<von> is the veyron object name of the binary to upload
+<von> is the vanadium object name of the binary to upload
<filename> is the name of the file or directory to upload
`,
}
@@ -100,9 +100,9 @@
Run: runURL,
Name: "url",
Short: "Fetch a download URL",
- Long: "Connect to the binary repository and fetch the download URL for the given veyron object name.",
+ Long: "Connect to the binary repository and fetch the download URL for the given vanadium object name.",
ArgsName: "<von>",
- ArgsLong: "<von> is the veyron object name of the binary repository",
+ ArgsLong: "<von> is the vanadium object name of the binary repository",
}
func runURL(cmd *cmdline.Command, args []string) error {
@@ -121,9 +121,9 @@
func root() *cmdline.Command {
return &cmdline.Command{
Name: "binary",
- Short: "Tool for interacting with the veyron binary repository",
+ Short: "Tool for interacting with the vanadium binary repository",
Long: `
-The binary tool facilitates interaction with the veyron binary repository.
+The binary tool facilitates interaction with the vanadium binary repository.
`,
Children: []*cmdline.Command{cmdDelete, cmdDownload, cmdUpload, cmdURL},
}
diff --git a/cmd/build/doc.go b/cmd/build/doc.go
index f0fef3a..68a70d9 100644
--- a/cmd/build/doc.go
+++ b/cmd/build/doc.go
@@ -2,13 +2,13 @@
// DO NOT UPDATE MANUALLY
/*
-The build tool tool facilitates interaction with the veyron build server.
+The build tool tool facilitates interaction with the vanadium build server.
Usage:
build <command>
The build commands are:
- build Build veyron Go packages
+ build Build vanadium Go packages
help Display help for commands or topics
Run "build help [command]" for command usage.
@@ -54,7 +54,7 @@
Build Build
-Build veyron Go packages using a remote build server. The command collects all
+Build vanadium Go packages using a remote build server. The command collects all
source code files that are not part of the Go standard library that the target
packages depend on, sends them to a build server, and receives the built
binaries.
@@ -62,7 +62,7 @@
Usage:
build build [flags] <name> <packages>
-<name> is a veyron object name of a build server <packages> is a list of
+<name> is a vanadium object name of a build server <packages> is a list of
packages to build, specified as arguments for each command. The format is
similar to the go tool. In its simplest form each package is an import path;
e.g. "veyron/tools/build". A package that ends with "..." does a wildcard match
diff --git a/cmd/build/impl.go b/cmd/build/impl.go
index 46a517d..b81d1a3 100644
--- a/cmd/build/impl.go
+++ b/cmd/build/impl.go
@@ -34,14 +34,14 @@
var cmdRoot = &cmdline.Command{
Name: "build",
- Short: "Tool for interacting with the veyron build server",
+ Short: "Tool for interacting with the vanadium build server",
Long: `
-The build tool tool facilitates interaction with the veyron build server.
+The build tool tool facilitates interaction with the vanadium build server.
`,
Children: []*cmdline.Command{cmdBuild},
}
-// root returns a command that represents the root of the veyron tool.
+// root returns a command that represents the root of the vanadium tool.
func root() *cmdline.Command {
return cmdRoot
}
@@ -49,16 +49,16 @@
var cmdBuild = &cmdline.Command{
Run: runBuild,
Name: "build",
- Short: "Build veyron Go packages",
+ Short: "Build vanadium Go packages",
Long: `
-Build veyron Go packages using a remote build server. The command
+Build vanadium Go packages using a remote build server. The command
collects all source code files that are not part of the Go standard
library that the target packages depend on, sends them to a build
server, and receives the built binaries.
`,
ArgsName: "<name> <packages>",
ArgsLong: `
-<name> is a veyron object name of a build server
+<name> is a vanadium object name of a build server
<packages> is a list of packages to build, specified as arguments for
each command. The format is similar to the go tool. In its simplest
form each package is an import path; e.g. "veyron/tools/build". A
diff --git a/cmd/mgmt/device/doc.go b/cmd/mgmt/device/doc.go
index 231edde..59d5d21 100644
--- a/cmd/mgmt/device/doc.go
+++ b/cmd/mgmt/device/doc.go
@@ -80,9 +80,9 @@
Usage:
device install [flags] <device> <application>
-<device> is the veyron object name of the device manager's app service.
+<device> is the vanadium object name of the device manager's app service.
-<application> is the veyron object name of the application.
+<application> is the vanadium object name of the application.
The device install flags are:
-config={}
@@ -99,7 +99,7 @@
Usage:
device install-local [flags] <device> <title> [ENV=VAL ...] binary [--flag=val ...] [PACKAGES path ...]
-<device> is the veyron object name of the device manager's app service.
+<device> is the vanadium object name of the device manager's app service.
<title> is the app title.
@@ -123,7 +123,7 @@
Usage:
device uninstall <installation>
-<installation> is the veyron object name of the application installation to
+<installation> is the vanadium object name of the application installation to
uninstall.
Device Start
@@ -133,7 +133,7 @@
Usage:
device start <application installation> <grant extension>
-<application installation> is the veyron object name of the application
+<application installation> is the vanadium object name of the application
installation from which to start an instance.
<grant extension> is used to extend the default blessing of the current
@@ -188,7 +188,7 @@
Usage:
device describe <device>
-<device> is the veyron object name of the device manager's device service.
+<device> is the vanadium object name of the device manager's device service.
Device Claim
@@ -197,7 +197,7 @@
Usage:
device claim <device> <grant extension> <pairing token> <device publickey>
-<device> is the veyron object name of the device manager's device service.
+<device> is the vanadium object name of the device manager's device service.
<grant extension> is used to extend the default blessing of the current
principal when blessing the app instance.
@@ -215,7 +215,7 @@
Usage:
device stop <app instance>
-<app instance> is the veyron object name of the application instance to stop.
+<app instance> is the vanadium object name of the application instance to stop.
Device Suspend
@@ -224,7 +224,8 @@
Usage:
device suspend <app instance>
-<app instance> is the veyron object name of the application instance to suspend.
+<app instance> is the vanadium object name of the application instance to
+suspend.
Device Resume
@@ -233,7 +234,8 @@
Usage:
device resume <app instance>
-<app instance> is the veyron object name of the application instance to resume.
+<app instance> is the vanadium object name of the application instance to
+resume.
Device Revert
@@ -242,7 +244,7 @@
Usage:
device revert <object>
-<object> is the veyron object name of the device manager or application
+<object> is the vanadium object name of the device manager or application
installation to revert.
Device Update
@@ -252,7 +254,7 @@
Usage:
device update <object>
-<object> is the veyron object name of the device manager or application
+<object> is the vanadium object name of the device manager or application
installation or instance to update.
Device Updateall
@@ -263,7 +265,7 @@
Usage:
device updateall <object name>
-<object name> is the veyron object name to update, as follows:
+<object name> is the vanadium object name to update, as follows:
<devicename>/apps/apptitle/installationid/instanceid: updates the given
instance, suspending/resuming it if running
@@ -282,7 +284,7 @@
Usage:
device debug <device>
-<device> is the veyron object name of an app installation or instance.
+<device> is the vanadium object name of an app installation or instance.
Device Acl
diff --git a/cmd/mgmt/device/impl/impl.go b/cmd/mgmt/device/impl/impl.go
index da5b736..2a772a8 100644
--- a/cmd/mgmt/device/impl/impl.go
+++ b/cmd/mgmt/device/impl/impl.go
@@ -58,9 +58,9 @@
Long: "Install the given application.",
ArgsName: "<device> <application>",
ArgsLong: `
-<device> is the veyron object name of the device manager's app service.
+<device> is the vanadium object name of the device manager's app service.
-<application> is the veyron object name of the application.
+<application> is the vanadium object name of the application.
`,
}
@@ -89,7 +89,7 @@
Long: "Uninstall the given application installation.",
ArgsName: "<installation>",
ArgsLong: `
-<installation> is the veyron object name of the application installation to
+<installation> is the vanadium object name of the application installation to
uninstall.
`,
}
@@ -113,7 +113,7 @@
Long: "Start an instance of the given application.",
ArgsName: "<application installation> <grant extension>",
ArgsLong: `
-<application installation> is the veyron object name of the
+<application installation> is the vanadium object name of the
application installation from which to start an instance.
<grant extension> is used to extend the default blessing of the
@@ -187,7 +187,7 @@
Long: "Claim the device.",
ArgsName: "<device> <grant extension> <pairing token> <device publickey>",
ArgsLong: `
-<device> is the veyron object name of the device manager's device service.
+<device> is the vanadium object name of the device manager's device service.
<grant extension> is used to extend the default blessing of the
current principal when blessing the app instance.
@@ -236,7 +236,7 @@
Long: "Describe the device.",
ArgsName: "<device>",
ArgsLong: `
-<device> is the veyron object name of the device manager's device service.`,
+<device> is the vanadium object name of the device manager's device service.`,
}
func runDescribe(cmd *cmdline.Command, args []string) error {
@@ -259,7 +259,7 @@
Long: "Update the device manager or application",
ArgsName: "<object>",
ArgsLong: `
-<object> is the veyron object name of the device manager or application
+<object> is the vanadium object name of the device manager or application
installation or instance to update.`,
}
@@ -282,7 +282,7 @@
Long: "Revert the device manager or application to its previous version",
ArgsName: "<object>",
ArgsLong: `
-<object> is the veyron object name of the device manager or application
+<object> is the vanadium object name of the device manager or application
installation to revert.`,
}
@@ -305,7 +305,7 @@
Long: "Debug the device.",
ArgsName: "<device>",
ArgsLong: `
-<device> is the veyron object name of an app installation or instance.`,
+<device> is the vanadium object name of an app installation or instance.`,
}
func runDebug(cmd *cmdline.Command, args []string) error {
diff --git a/cmd/mgmt/device/impl/instance_impl.go b/cmd/mgmt/device/impl/instance_impl.go
index d0a5783..99b6210 100644
--- a/cmd/mgmt/device/impl/instance_impl.go
+++ b/cmd/mgmt/device/impl/instance_impl.go
@@ -16,7 +16,7 @@
Long: "Stop the given application instance.",
ArgsName: "<app instance>",
ArgsLong: `
-<app instance> is the veyron object name of the application instance to stop.`,
+<app instance> is the vanadium object name of the application instance to stop.`,
}
func runStop(cmd *cmdline.Command, args []string) error {
@@ -39,7 +39,7 @@
Long: "Suspend the given application instance.",
ArgsName: "<app instance>",
ArgsLong: `
-<app instance> is the veyron object name of the application instance to suspend.`,
+<app instance> is the vanadium object name of the application instance to suspend.`,
}
func runSuspend(cmd *cmdline.Command, args []string) error {
@@ -62,7 +62,7 @@
Long: "Resume the given application instance.",
ArgsName: "<app instance>",
ArgsLong: `
-<app instance> is the veyron object name of the application instance to resume.`,
+<app instance> is the vanadium object name of the application instance to resume.`,
}
func runResume(cmd *cmdline.Command, args []string) error {
diff --git a/cmd/mgmt/device/impl/local_install.go b/cmd/mgmt/device/impl/local_install.go
index 5c4aaaf..ceb2fc4 100644
--- a/cmd/mgmt/device/impl/local_install.go
+++ b/cmd/mgmt/device/impl/local_install.go
@@ -34,7 +34,7 @@
Long: "Install the given application, specified using a local path.",
ArgsName: "<device> <title> [ENV=VAL ...] binary [--flag=val ...] [PACKAGES path ...]",
ArgsLong: `
-<device> is the veyron object name of the device manager's app service.
+<device> is the vanadium object name of the device manager's app service.
<title> is the app title.
diff --git a/cmd/mgmt/device/impl/updateall.go b/cmd/mgmt/device/impl/updateall.go
index 7976bc9..39b92b0 100644
--- a/cmd/mgmt/device/impl/updateall.go
+++ b/cmd/mgmt/device/impl/updateall.go
@@ -26,7 +26,7 @@
Long: "Given a name that can refer to an app instance or app installation or app or all apps on a device, updates all installations and instances under that name",
ArgsName: "<object name>",
ArgsLong: `
-<object name> is the veyron object name to update, as follows:
+<object name> is the vanadium object name to update, as follows:
<devicename>/apps/apptitle/installationid/instanceid: updates the given instance, suspending/resuming it if running
diff --git a/cmd/mgmt/shell/lib/shell.sh b/cmd/mgmt/shell/lib/shell.sh
index aa2319c..ff8fc8d 100755
--- a/cmd/mgmt/shell/lib/shell.sh
+++ b/cmd/mgmt/shell/lib/shell.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# The shell library is used to execute veyron shell scripts.
+# The shell library is used to execute vanadium shell scripts.
# IMPORTANT: If your script registers its own "trap" handler, that handler must
# call shell::at_exit to clean up all temporary files and directories created by
diff --git a/cmd/mgmt/vbash b/cmd/mgmt/vbash
index a1614b9..5aec109 100755
--- a/cmd/mgmt/vbash
+++ b/cmd/mgmt/vbash
@@ -171,7 +171,7 @@
fi
# Use a custom rcfile to optionally get a blessing and also to modify the
- # shell prompt to include the default veyron blessing.
+ # shell prompt to include the default vanadium blessing.
cat <<EOF > "${INSTALL_DIR}/rcfile"
if [[ Darwin == "$(uname)" ]]; then
if [[ -r /etc/profile ]]; then . /etc/profile; fi
diff --git a/cmd/mounttable/doc.go b/cmd/mounttable/doc.go
index da73379..e4fcee2 100644
--- a/cmd/mounttable/doc.go
+++ b/cmd/mounttable/doc.go
@@ -2,7 +2,7 @@
// DO NOT UPDATE MANUALLY
/*
-The mounttable tool facilitates interaction with a Veyron mount table.
+The mounttable tool facilitates interaction with a Vanadium mount table.
Usage:
mounttable <command>
diff --git a/cmd/mounttable/impl.go b/cmd/mounttable/impl.go
index 060d854..15b161a 100644
--- a/cmd/mounttable/impl.go
+++ b/cmd/mounttable/impl.go
@@ -218,9 +218,9 @@
cmdMount.Flags.Var(&flagMountBlessingPatterns, "blessing_pattern", "blessing pattern that matches the blessings of the server being mounted. Can be specified multiple times to add multiple patterns. If none is provided, the server will be contacted to determine this value.")
return &cmdline.Command{
Name: "mounttable",
- Short: "Tool for interacting with a Veyron mount table",
+ Short: "Tool for interacting with a Vanadium mount table",
Long: `
-The mounttable tool facilitates interaction with a Veyron mount table.
+The mounttable tool facilitates interaction with a Vanadium mount table.
`,
Children: []*cmdline.Command{cmdGlob, cmdMount, cmdUnmount, cmdResolveStep},
}
diff --git a/cmd/namespace/doc.go b/cmd/namespace/doc.go
index 77191e1..31a29db 100644
--- a/cmd/namespace/doc.go
+++ b/cmd/namespace/doc.go
@@ -2,7 +2,7 @@
// DO NOT UPDATE MANUALLY
/*
-The namespace tool facilitates interaction with the Veyron namespace.
+The namespace tool facilitates interaction with the Vanadium namespace.
The namespace roots are set from the command line via veyron.namespace.root
options or from environment variables that have a name starting with
diff --git a/cmd/namespace/impl.go b/cmd/namespace/impl.go
index b12d76d..dfbd410 100644
--- a/cmd/namespace/impl.go
+++ b/cmd/namespace/impl.go
@@ -219,9 +219,9 @@
cmdMount.Flags.Var(&flagMountBlessings, "blessing_pattern", "Blessing pattern that is matched by the blessings of the server being mounted. If none is provided, the server will be contacted to determine this value.")
return &cmdline.Command{
Name: "namespace",
- Short: "Tool for interacting with the Veyron namespace",
+ Short: "Tool for interacting with the Vanadium namespace",
Long: `
-The namespace tool facilitates interaction with the Veyron namespace.
+The namespace tool facilitates interaction with the Vanadium namespace.
The namespace roots are set from the command line via veyron.namespace.root options or from environment variables that have a name
starting with NAMESPACE_ROOT, e.g. NAMESPACE_ROOT, NAMESPACE_ROOT_2,
diff --git a/cmd/principal/bless.go b/cmd/principal/bless.go
index bd7e84a..ba432a4 100644
--- a/cmd/principal/bless.go
+++ b/cmd/principal/bless.go
@@ -106,7 +106,7 @@
blessed, ok := <-blessedChan
if !ok {
tmplArgs.ErrShort = "No blessings received"
- tmplArgs.ErrLong = "Unable to obtain blessings from the Veyron service"
+ tmplArgs.ErrLong = "Unable to obtain blessings from the Vanadium service"
return
}
tmplArgs.Blessings = blessed
@@ -155,7 +155,7 @@
<html>
<head>
<meta charset="UTF-8">
-<title>Veyron Identity: Google</title>
+<title>Vanadium Identity: Google</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
{{if .Blessings}}
diff --git a/cmd/principal/doc.go b/cmd/principal/doc.go
index 7cde98b..7779a96 100644
--- a/cmd/principal/doc.go
+++ b/cmd/principal/doc.go
@@ -14,7 +14,7 @@
create Create a new principal and persist it into a directory
fork Fork a new principal from the principal that this tool is
running as and persist it into a directory
- seekblessings Seek blessings from a web-based Veyron blessing service
+ seekblessings Seek blessings from a web-based Vanadium blessing service
recvblessings Receive blessings sent by another principal and use them as the
default
dump Dump out information about the principal
@@ -127,7 +127,7 @@
Principal Seekblessings
-Seeks blessings from a web-based Veyron blesser which requires the caller to
+Seeks blessings from a web-based Vanadium blesser which requires the caller to
first authenticate with Google using OAuth. Simply run the command to see what
happens.
diff --git a/cmd/principal/main.go b/cmd/principal/main.go
index 03f4d24..ce01ec6 100644
--- a/cmd/principal/main.go
+++ b/cmd/principal/main.go
@@ -554,9 +554,9 @@
cmdSeekBlessings = &cmdline.Command{
Name: "seekblessings",
- Short: "Seek blessings from a web-based Veyron blessing service",
+ Short: "Seek blessings from a web-based Vanadium blessing service",
Long: `
-Seeks blessings from a web-based Veyron blesser which
+Seeks blessings from a web-based Vanadium blesser which
requires the caller to first authenticate with Google using OAuth. Simply
run the command to see what happens.
@@ -577,7 +577,7 @@
defer close(blessedChan)
macaroonChan, err := getMacaroonForBlessRPC(flagSeekBlessingsFrom, blessedChan, flagSeekBlessingsBrowser)
if err != nil {
- return fmt.Errorf("failed to get macaroon from Veyron blesser: %v", err)
+ return fmt.Errorf("failed to get macaroon from Vanadium blesser: %v", err)
}
blessings, err := exchangeMacaroonForBlessing(ctx, macaroonChan)
@@ -734,7 +734,7 @@
root := &cmdline.Command{
Name: "principal",
- Short: "Create and manage veyron principals",
+ Short: "Create and manage vanadium principals",
Long: `
The principal tool helps create and manage blessings and the set of trusted
roots bound to a principal.
diff --git a/cmd/profile/doc.go b/cmd/profile/doc.go
index 71c65c9..4b46f86 100644
--- a/cmd/profile/doc.go
+++ b/cmd/profile/doc.go
@@ -2,7 +2,7 @@
// DO NOT UPDATE MANUALLY
/*
-The profile tool facilitates interaction with the veyron profile repository.
+The profile tool facilitates interaction with the vanadium profile repository.
Usage:
profile <command>
diff --git a/cmd/profile/impl.go b/cmd/profile/impl.go
index 92b1fc9..463eeca 100644
--- a/cmd/profile/impl.go
+++ b/cmd/profile/impl.go
@@ -147,9 +147,9 @@
func root() *cmdline.Command {
return &cmdline.Command{
Name: "profile",
- Short: "Tool for interacting with the veyron profile repository",
+ Short: "Tool for interacting with the vanadium profile repository",
Long: `
-The profile tool facilitates interaction with the veyron profile repository.
+The profile tool facilitates interaction with the vanadium profile repository.
`,
Children: []*cmdline.Command{cmdLabel, cmdDescription, cmdSpecification, cmdPut, cmdRemove},
}
diff --git a/cmd/vdl/doc.go b/cmd/vdl/doc.go
index 4e86dee..4210ce5 100644
--- a/cmd/vdl/doc.go
+++ b/cmd/vdl/doc.go
@@ -2,7 +2,7 @@
// DO NOT UPDATE MANUALLY
/*
-The vdl tool manages veyron VDL source code. It's similar to the go tool used
+The vdl tool manages vanadium VDL source code. It's similar to the go tool used
for managing Go source code.
Usage:
diff --git a/cmd/vdl/main.go b/cmd/vdl/main.go
index bcd20ee..63ca8e5 100644
--- a/cmd/vdl/main.go
+++ b/cmd/vdl/main.go
@@ -351,9 +351,9 @@
// Root returns the root command for the VDL tool.
var cmdVDL = &cmdline.Command{
Name: "vdl",
- Short: "Manage veyron VDL source code",
+ Short: "Manage vanadium VDL source code",
Long: `
-The vdl tool manages veyron VDL source code. It's similar to the go tool used
+The vdl tool manages vanadium VDL source code. It's similar to the go tool used
for managing Go source code.
`,
Children: []*cmdline.Command{cmdGenerate, cmdCompile, cmdAudit, cmdList},
diff --git a/cmd/vom/doc.go b/cmd/vom/doc.go
index 2f49d3d..6c17f07 100644
--- a/cmd/vom/doc.go
+++ b/cmd/vom/doc.go
@@ -2,7 +2,7 @@
// DO NOT UPDATE MANUALLY
/*
-The vom tool helps debug the Veyron Object Marshaling (vom) protocol.
+The vom tool helps debug the Vanadium Object Marshaling (vom) protocol.
Usage:
vom <command>
diff --git a/cmd/vom/vom.go b/cmd/vom/vom.go
index 4b55635..781092a 100644
--- a/cmd/vom/vom.go
+++ b/cmd/vom/vom.go
@@ -24,9 +24,9 @@
var cmdVom = &cmdline.Command{
Name: "vom",
- Short: "Veyron Object Marshaling debugging tool",
+ Short: "Vanadium Object Marshaling debugging tool",
Long: `
-The vom tool helps debug the Veyron Object Marshaling (vom) protocol.
+The vom tool helps debug the Vanadium Object Marshaling (vom) protocol.
`,
Children: []*cmdline.Command{cmdDecode, cmdDump},
}