From c26dbddc805832a1b9b4fafaa01942d607a2c9af Mon Sep 17 00:00:00 2001 From: Benoit Pasquier <4486578+briochemc@users.noreply.github.com> Date: Mon, 11 Jan 2021 16:25:11 +1100 Subject: [PATCH] Fix typo --- blog/2021/01/precompile_tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/2021/01/precompile_tutorial.md b/blog/2021/01/precompile_tutorial.md index 8d5f32a1e0..b83a714ae3 100644 --- a/blog/2021/01/precompile_tutorial.md +++ b/blog/2021/01/precompile_tutorial.md @@ -154,7 +154,7 @@ In this blog post, we take a big step backwards and start peering under the hood ## Type-inference, MethodInstances, and backedges -We'll introduce these concepts via a simple demo (users are encourage to try this and follow along). First, let's open the Julia REPL and define the following methods: +We'll introduce these concepts via a simple demo (users are encouraged to try this and follow along). First, let's open the Julia REPL and define the following methods: ``` double(x::Real) = 2x