From 9985178c07590366a0045b5aa960f7c72bd56568 Mon Sep 17 00:00:00 2001 From: Sheikh Sadi <84468299+sheikhsadi46@users.noreply.github.com> Date: Sun, 14 Sep 2025 13:09:01 +0600 Subject: [PATCH] Correct the spelling for the google in the configuration sample Correct the spelling for the google in the configuration sample --- .../en/framework/infrastructure/blob-storing/google.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/framework/infrastructure/blob-storing/google.md b/docs/en/framework/infrastructure/blob-storing/google.md index a90152b4f0..bd7f7c1fbf 100644 --- a/docs/en/framework/infrastructure/blob-storing/google.md +++ b/docs/en/framework/infrastructure/blob-storing/google.md @@ -27,11 +27,11 @@ Configure(options => { container.UseGoogle(google => { - google.ClientEmail = "your coogle client email"; - google.ProjectId = "your coogle project id"; - google.PrivateKey = "your coogle private key"; - google.Scopes = "your coogle scopes"; - google.ContainerName = "your coogle container name"; + google.ClientEmail = "your google client email"; + google.ProjectId = "your google project id"; + google.PrivateKey = "your google private key"; + google.Scopes = "your google scopes"; + google.ContainerName = "your google container name"; google.CreateContainerIfNotExists = true; //google.UseApplicationDefaultCredentials = true; // If you want to use application default credentials });