From 3754f230415704c54e0e6738504c378b79f09b3f Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Mon, 21 Nov 2016 16:31:59 +0000 Subject: [PATCH] Fix typo --- cli/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/flags.go b/cli/flags.go index dc648293..3b068458 100644 --- a/cli/flags.go +++ b/cli/flags.go @@ -15,7 +15,7 @@ package cli var flags = map[string]string{ - "db": `Database configuration path used for storing data. Available baend stores are boltdb, mysql, or pgsql. (default "boltdb://surreal.db").`, + "db": `Database configuration path used for storing data. Available backend stores are boltdb, mysql, or pgsql. (default "boltdb://surreal.db").`, "key": `Encryption key to use for intra-cluster communications, and on-disk encryption. For AES-128 encryption use a 16 bit key, for AES-192 encryption use a 24 bit key, and for AES-256 encryption use a 32 bit key.`, "join": `A comma-separated list of addresses to use when a new node is joining an existing cluster. For the first node in a cluster, --join should NOT be specified.`, "zone": `The continent that the server is located within. Possible values are: GL (Global), EU (Europe), AS (Asia), NA (North America), SA (South America), OC (Oceania), AF (Africa). (default "GL")`,