gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-wallet-webex] branch master updated: fix timer typo


From: gnunet
Subject: [GNUnet-SVN] [taler-wallet-webex] branch master updated: fix timer typo
Date: Tue, 06 Jun 2017 13:12:44 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-webex.

The following commit(s) were added to refs/heads/master by this push:
     new 21ea1325 fix timer typo
21ea1325 is described below

commit 21ea13250f691b35f67395ac9db874673988b167
Author: Florian Dold <address@hidden>
AuthorDate: Tue Jun 6 13:12:24 2017 +0200

    fix timer typo
---
 src/timer.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/timer.ts b/src/timer.ts
index f19e975a..289b46f1 100644
--- a/src/timer.ts
+++ b/src/timer.ts
@@ -73,7 +73,7 @@ export function every(delayMs: number, callback: () => void): 
TimerHandle {
  * Call a function after the delay given in milliseconds passes.
  */
 export function after(delayMs: number, callback: () => void): TimerHandle {
-  return new TimeoutHandle(setInterval(callback, delayMs));
+  return new TimeoutHandle(setTimeout(callback, delayMs));
 }
 
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]