From 0cb7999e9e89d0c17c5e1d917e97cc6e450b9346 Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 23 Nov 2020 18:28:46 +0100 Subject: [PATCH] Fixed typo. (#111) --- examples/tutorial/TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tutorial/TUTORIAL.md b/examples/tutorial/TUTORIAL.md index 45e9de6..e3fdc15 100644 --- a/examples/tutorial/TUTORIAL.md +++ b/examples/tutorial/TUTORIAL.md @@ -1,6 +1,6 @@ ## Introduction to gRPC-Haskell -*This tutorial assumes that you already have a basic understanding of gRPC as well as Haskell.* For an intoduction to the concepts of gRPC, see the [official tutorials](http://www.grpc.io/docs/tutorials/). +*This tutorial assumes that you already have a basic understanding of gRPC as well as Haskell.* For an introduction to the concepts of gRPC, see the [official tutorials](http://www.grpc.io/docs/tutorials/). This will go through a basic example of using the library, with the `arithmetic` example in the `examples/arithmetic` directory. After cloning this repository, it would be a good idea to run `stack haddock` from within the repository directory to generate the documentation so you can read more about the functions and types we're using as we go. Also remember that [typed holes](https://wiki.haskell.org/GHC/Typed_holes) can be very handy.