From 375253ae8a60219838563103e53acfc8d49b8efa Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 5 Jan 2009 11:58:08 +0000 Subject: [PATCH] From Paul Martz, Correction to Timer method comment. --- include/osg/Timer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/Timer b/include/osg/Timer index c064f1eb5..d5381dcae 100644 --- a/include/osg/Timer +++ b/include/osg/Timer @@ -67,7 +67,7 @@ class OSG_EXPORT Timer { /** Get the time in nanoseconds between timer ticks t1 and t2.*/ inline double delta_n( Timer_t t1, Timer_t t2 ) const { return delta_s(t1,t2)*1e9; } - /** Get the the number of ticks per second.*/ + /** Get the the number of seconds per tick. */ inline double getSecondsPerTick() const { return _secsPerTick; } protected :