From 0da1f737776ae866f79c2b8da8587aedb944a79e Mon Sep 17 00:00:00 2001 From: Bojan Date: Fri, 16 Nov 2018 07:49:12 +0100 Subject: [PATCH] Removed empty space --- vm/src/vm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/src/vm.rs b/vm/src/vm.rs index a3a229534..6494bb977 100644 --- a/vm/src/vm.rs +++ b/vm/src/vm.rs @@ -466,7 +466,7 @@ impl VirtualMachine { /// Given the above example, it will /// 1. Try to call `__and__` with `a` and `b` /// 2. If above fails try to call `__rand__` with `a` and `b` - /// 3. If above fails throw an exception: + /// 3. If above fails throw an exception: /// `TypeError: Unsupported operand types for '&': 'float' and 'int'` /// if `a` is of type float and `b` of type int ///