From 4b16f93cbcf642f08979e85a09409f2e83d3e2bc Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Thu, 20 Aug 2020 09:42:32 +0200 Subject: [PATCH] spec: fixed small error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7961c6f..71248b1 100644 --- a/README.md +++ b/README.md @@ -326,7 +326,7 @@ This proposal has opted against using something like Slate's Prototype Multiple ### If you define your other-type overloads based on a previously defined type, how do you know which type came first? -If you have operators defined in two different modules, then to define overloads between them, import one module from the other, and don't make a circularity between the two. If you do this, the loading order wil lbe determinstic. The one that imports the other one is responsible for defining the overloads between the two types. +If you have operators defined in two different modules, then to define overloads between them, import one module from the other, and don't make a circularity between the two. If you do this, the loading order will be deterministic. The one that imports the other one is responsible for defining the overloads between the two types. ### How does operator overloading relate to other proposals?