Tcl Source Code

View Ticket
Login
2015-08-18
12:50 Closed ticket [2c509f6291]: documentation: wrong command in example for my plus 6 other changes artifact: 6c498ef18c user: dkf
12:50
[2c509f6291] Minor documentation correction from Peter Lewerin. check-in: 2aa305b227 user: dkf tags: trunk
2015-07-27
14:08 Ticket [2c509f6291] documentation: wrong command in example for my status still Open with 3 other changes artifact: 0130708f47 user: peterlewerin
14:07 New ticket [2c509f6291]. artifact: 46f848b1ae user: peterlewerin

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]
    }
}