Bug 1514

Summary: Typo
Product: ns-3 Reporter: César López Ramírez <cesarlr>
Component: documentationAssignee: Tom Henderson <tomh>
Status: RESOLVED FIXED    
Severity: normal CC: ns-bugs
Priority: P5    
Version: ns-3.15   
Hardware: All   
OS: All   

Description César López Ramírez 2012-10-17 10:01:51 UTC
Here:
http://www.nsnam.org/docs/release/3.14/tutorial/singlehtml/index.html#udpechoclienthelper
appears:

echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.)));

it should appear:

echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.0)));
Comment 1 Tom Henderson 2012-10-21 19:06:36 UTC
fixed in changeset: ede7a74e7411

I resolved this by making all tutorial references to TimeValue(1.) into TimeValue (1.0) in the code and documentation.