From 13bb502f5321b7777e9d9d098f6701a152d05fa1 Mon Sep 17 00:00:00 2001 From: Sami Vaarala Date: Thu, 17 Mar 2016 17:44:33 +0200 Subject: [PATCH] Fix type in Proxy example --- HowtoVirtualProperties.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HowtoVirtualProperties.md b/HowtoVirtualProperties.md index 5c7e315..7b8d267 100644 --- a/HowtoVirtualProperties.md +++ b/HowtoVirtualProperties.md @@ -208,7 +208,7 @@ var handler = { has: function (targ, key) { print('has called for key=' + key); return key in targ; // return unmodified existence status - } + }, get: function (targ, key, recv) { print('get called for key=' + key);