Tcl Source Code

View Ticket
Login
Ticket UUID: 2c509f629112e03fd8af850b109c6fbd37cd6e70
Title: documentation: wrong command in example for my
Type: Bug Version: 8.6.4
Submitter: peterlewerin Created on: 2015-07-27 14:07:10
Subsystem: 35. TclOO Package Assigned To: dkf
Priority: 5 Medium Severity: Minor
Status: Closed Last Modified: 2015-08-18 12:50:32
Resolution: Fixed Closed By: dkf
    Closed on: 2015-08-18 12:50:32
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]
    }
}