From 457b3b1b117dcfdc7f2899edc38fbee22503a9ee Mon Sep 17 00:00:00 2001 From: Istio Automation Date: Thu, 17 Sep 2020 07:49:41 -0700 Subject: [PATCH] fix mysql password (#8158) There's a letter p missing from the password. Co-authored-by: Jimmy Song --- content/en/docs/examples/virtual-machines/bookinfo/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/examples/virtual-machines/bookinfo/index.md b/content/en/docs/examples/virtual-machines/bookinfo/index.md index 0d53002402..2d02707a8e 100644 --- a/content/en/docs/examples/virtual-machines/bookinfo/index.md +++ b/content/en/docs/examples/virtual-machines/bookinfo/index.md @@ -71,7 +71,7 @@ To make it easy to visually inspect the difference in the output of the Bookinfo following commands to inspect the ratings: {{< text bash >}} -$ mysql -u root -password test -e "select * from ratings;" +$ mysql -u root -ppassword test -e "select * from ratings;" +----------+--------+ | ReviewID | Rating | +----------+--------+