From fac2fa19e06a139587d893e8033373fb1609fb88 Mon Sep 17 00:00:00 2001 From: Pure Krome Date: Sat, 11 Apr 2020 01:08:26 +1000 Subject: [PATCH] :lipstick: Fixed typo. (#346) --- docs/tutorials/hello-tye/01_deploy.md | 4 ++-- docs/tutorials/hello-tye/02_add_redis.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorials/hello-tye/01_deploy.md b/docs/tutorials/hello-tye/01_deploy.md index d501dbeb..f44ab39f 100644 --- a/docs/tutorials/hello-tye/01_deploy.md +++ b/docs/tutorials/hello-tye/01_deploy.md @@ -12,9 +12,9 @@ Before we deploy, make sure you have the following ready... 3. A Kubernetes Cluster. There are many different options here, including: - [Azure Kubernetes Service](https://docs.microsoft.com/en-us/azure/aks/tutorial-kubernetes-deploy-cluster) - - [Kubernetes in Docker Desktop](https://www.docker.com/blog/docker-windows-desktop-now-kubernetes/)x, however it does take up quite a bit of memory on your machine, so use with caution. + - [Kubernetes in Docker Desktop](https://www.docker.com/blog/docker-windows-desktop-now-kubernetes/), however it does take up quite a bit of memory on your machine, so use with caution. - [Minikube](https://kubernetes.io/docs/tasks/tools/install-minikube/) - - [K3s](https://k3s.io), a lightweight single-binary certified Kubernetes distribution from Rancher.x + - [K3s](https://k3s.io), a lightweight single-binary certified Kubernetes distribution from Rancher. - Another Kubernetes provider of your choice. > :warning: If you choose a container registry provided by a cloud provider (other than Dockerhub), you will likely have to take some steps to configure your kubernetes cluster to allow access. Follow the instructions provided by your cloud provider. diff --git a/docs/tutorials/hello-tye/02_add_redis.md b/docs/tutorials/hello-tye/02_add_redis.md index 2d4302c4..c74f8f60 100644 --- a/docs/tutorials/hello-tye/02_add_redis.md +++ b/docs/tutorials/hello-tye/02_add_redis.md @@ -9,7 +9,7 @@ We just showed how `tye` makes it easier to communicate between 2 applications r 1. Change the `WeatherForecastController.Get()` method in the `backend` project to cache the weather information in redis using an `IDistributedCache`. - Add the following `using`s to the top of the file: + Add the following `using`'s to the top of the file: ```C# using Microsoft.Extensions.Caching.Distributed;