From ed2ab3c09b1102310c461c715908f6abab3569c7 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Fri, 4 Mar 2016 08:10:53 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c82450f0..567c4d71 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ fn main() { } ``` -You can also see in this example how you can register multiple functions (or in this case multiple instances of the same function) to the same name in script. The scripting engine will handle looking up the correct function during function resolution. +You can also see in this example how you can register multiple functions (or in this case multiple instances of the same function) to the same name in script. This gives you a way to overload functions and call the correct one, based on the types of the arguments, from your script. # Example: Working with custom types and methods