Tcl Source Code

View Ticket
Login
Ticket UUID: 2c509f629112e03fd8af850b109c6fbd37cd6e70
Title: documentation: wrong command in example for my
Type: Bug Created on: 2015-07-27 14:07:10
Submitter: peterlewerin Assigned to: dkf
Subsystem: 35. TclOO Package Severity: Minor
Priority: 5 Medium Last modified: 2015-08-18 12:50:32
Status: Closed Closed by: dkf
Resolution: Fixed Closed on: 2015-08-18 12:50:32
Version: 8.6.4
Description:

In the documentation for my, in the example the count method calls the command print: this should probably be puts.

Corrected code:

oo::class create c {
    method count {} {
        my variable counter
        puts [incr counter]
    }
}