From 25657cec48b492d1db34b4fdb8cad2df2f73f4a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Lesaege?= Date: Wed, 27 Dec 2017 01:19:57 +0100 Subject: [PATCH] Fixed typo in comment "betwen"->"between" --- contracts/MiniMeToken.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/MiniMeToken.sol b/contracts/MiniMeToken.sol index 14be148d..1866d998 100644 --- a/contracts/MiniMeToken.sol +++ b/contracts/MiniMeToken.sol @@ -473,7 +473,7 @@ contract MiniMeToken is Controlled { return size>0; } - /// @dev Helper function to return a min betwen the two uints + /// @dev Helper function to return a min between the two uints function min(uint a, uint b) pure internal returns (uint) { return a < b ? a : b; }