diff -r /Users/stevan/Desktop/Test-Simple/lib/Test/Builder.pm lib/Test/Builder.pm
355c355
<   $Test->ok($test, $name);
---
>   $Test->ok($test, $comment);
363c363
<     my($self, $test, $name) = @_;
---
>     my($self, $test, $comment) = @_;
377,378c377,378
<     # In case $name is a string overloaded object, force it to stringify.
<     $self->_unoverload(\$name);
---
>     # In case $comment is a string overloaded object, force it to stringify.
>     $self->_unoverload(\$comment);
380,381c380,381
<     $self->diag(<<ERR) if defined $name and $name =~ /^[\d\s]+$/;
<     You named your test '$name'.  You shouldn't use numbers for your test names.
---
>     $self->diag(<<ERR) if defined $comment and $comment =~ /^[\d\s]+$/;
>     You commented your test '$comment'.  You shouldn't use numbers for your test comments.
404,407c404,407
<     if( defined $name ) {
<         $name =~ s|#|\\#|g;     # # in a name can confuse Test::Harness.
<         $out   .= " - $name";
<         $result->{name} = $name;
---
>     if( defined $comment ) {
>         $comment =~ s|#|\\#|g;     # # in a comment can confuse Test::Harness.
>         $out   .= " - $comment";
>         $result->{name} = $comment;
459c459
<   $Test->is_eq($got, $expected, $name);
---
>   $Test->is_eq($got, $expected, $comment);
466c466
<   $Test->is_num($got, $expected, $name);
---
>   $Test->is_num($got, $expected, $comment);
474c474
<     my($self, $got, $expect, $name) = @_;
---
>     my($self, $got, $expect, $comment) = @_;
481c481
<         $self->ok($test, $name);
---
>         $self->ok($test, $comment);
486c486
<     return $self->cmp_ok($got, 'eq', $expect, $name);
---
>     return $self->cmp_ok($got, 'eq', $expect, $comment);
490c490
<     my($self, $got, $expect, $name) = @_;
---
>     my($self, $got, $expect, $comment) = @_;
497c497
<         $self->ok($test, $name);
---
>         $self->ok($test, $comment);
502c502
<     return $self->cmp_ok($got, '==', $expect, $name);
---
>     return $self->cmp_ok($got, '==', $expect, $comment);
533c533
<   $Test->isnt_eq($got, $dont_expect, $name);
---
>   $Test->isnt_eq($got, $dont_expect, $comment);
540c540
<   $Test->is_num($got, $dont_expect, $name);
---
>   $Test->is_num($got, $dont_expect, $comment);
548c548
<     my($self, $got, $dont_expect, $name) = @_;
---
>     my($self, $got, $dont_expect, $comment) = @_;
555c555
<         $self->ok($test, $name);
---
>         $self->ok($test, $comment);
560c560
<     return $self->cmp_ok($got, 'ne', $dont_expect, $name);
---
>     return $self->cmp_ok($got, 'ne', $dont_expect, $comment);
564c564
<     my($self, $got, $dont_expect, $name) = @_;
---
>     my($self, $got, $dont_expect, $comment) = @_;
571c571
<         $self->ok($test, $name);
---
>         $self->ok($test, $comment);
576c576
<     return $self->cmp_ok($got, '!=', $dont_expect, $name);
---
>     return $self->cmp_ok($got, '!=', $dont_expect, $comment);
582,583c582,583
<   $Test->like($this, qr/$regex/, $name);
<   $Test->like($this, '/$regex/', $name);
---
>   $Test->like($this, qr/$regex/, $comment);
>   $Test->like($this, '/$regex/', $comment);
591,592c591,592
<   $Test->unlike($this, qr/$regex/, $name);
<   $Test->unlike($this, '/$regex/', $name);
---
>   $Test->unlike($this, qr/$regex/, $comment);
>   $Test->unlike($this, '/$regex/', $comment);
600c600
<     my($self, $this, $regex, $name) = @_;
---
>     my($self, $this, $regex, $comment) = @_;
603c603
<     $self->_regex_ok($this, $regex, '=~', $name);
---
>     $self->_regex_ok($this, $regex, '=~', $comment);
607c607
<     my($self, $this, $regex, $name) = @_;
---
>     my($self, $this, $regex, $comment) = @_;
610c610
<     $self->_regex_ok($this, $regex, '!~', $name);
---
>     $self->_regex_ok($this, $regex, '!~', $comment);
631c631
<       my ($self, $this, $regex, $name) = @_;
---
>       my ($self, $this, $regex, $comment) = @_;
635c635
<       $self->ok($this =~ m/$usable_regex/, $name);
---
>       $self->ok($this =~ m/$usable_regex/, $comment);
655c655
<     my($self, $this, $regex, $cmp, $name) = @_;
---
>     my($self, $this, $regex, $cmp, $comment) = @_;
662c662
<         $ok = $self->ok( 0, $name );
---
>         $ok = $self->ok( 0, $comment );
671c671
<         $ok = $self->ok( $test, $name );
---
>         $ok = $self->ok( $test, $comment );
689c689
<   $Test->cmp_ok($this, $type, $that, $name);
---
>   $Test->cmp_ok($this, $type, $that, $comment);
698c698
<     my($self, $got, $type, $expect, $name) = @_;
---
>     my($self, $got, $type, $expect, $comment) = @_;
708c708
<     my $ok = $self->ok($test, $name);
---
>     my $ok = $self->ok($test, $comment);
1257c1257
< 'name' is the name of the test.
---
> 'name' is the test comment (formerly known as 'name').
diff -r /Users/stevan/Desktop/Test-Simple/lib/Test/More.pm lib/Test/More.pm
68c68
<   ok($this eq $that, $test_name);
---
>   ok($this eq $that, $test_comment);
70,71c70,71
<   is  ($this, $that,    $test_name);
<   isnt($this, $that,    $test_name);
---
>   is  ($this, $that,    $test_comment);
>   isnt($this, $that,    $test_comment);
76,77c76,77
<   like  ($this, qr/that/, $test_name);
<   unlike($this, qr/that/, $test_name);
---
>   like  ($this, qr/that/, $test_comment);
>   unlike($this, qr/that/, $test_comment);
79c79
<   cmp_ok($this, '==', $that, $test_name);
---
>   cmp_ok($this, '==', $that, $test_comment);
81c81
<   is_deeply($complex_structure1, $complex_structure2, $test_name);
---
>   is_deeply($complex_structure1, $complex_structure2, $test_comment);
86,87c86,87
<       ok( foo(),       $test_name );
<       is( foo(42), 23, $test_name );
---
>       ok( foo(),       $test_comment );
>       is( foo(42), 23, $test_comment );
93,94c93,94
<       ok( foo(),       $test_name );
<       is( foo(42), 23, $test_name );
---
>       ok( foo(),       $test_comment );
>       is( foo(42), 23, $test_comment );
100,101c100,101
<   pass($test_name);
<   fail($test_name);
---
>   pass($test_comment);
>   fail($test_comment);
250,251c250,251
< All test functions take a name argument.  It's optional, but highly
< suggested that you use it.
---
> All test functions take a comment argument (formerly called the 'name' 
> argument.  It's optional, but highly suggested that you use it.
268c268
<   ok($this eq $that, $test_name);
---
>   ok($this eq $that, $test_comment);
283c283
< $test_name is a very short description of the test that will be printed
---
> $test_comment is a very short description of the test that will be printed
285c285
< and gives others an idea of your intentions.  $test_name is optional,
---
> and gives others an idea of your intentions.  $test_comment is optional,
298,299c298,299
<     my($test, $name) = @_;
<     $Test->ok($test, $name);
---
>     my($test, $comment) = @_;
>     $Test->ok($test, $comment);
306,307c306,307
<   is  ( $this, $that, $test_name );
<   isnt( $this, $that, $test_name );
---
>   is  ( $this, $that, $test_comment );
>   isnt( $this, $that, $test_comment );
327c327
< cannot know what you are testing for (beyond the name), but is() and
---
> cannot know what you are testing for (beyond the comment), but is() and
374c374
<   like( $this, qr/that/, $test_name );
---
>   like( $this, qr/that/, $test_comment );
409c409
<   unlike( $this, qr/that/, $test_name );
---
>   unlike( $this, qr/that/, $test_comment );
423c423
<   cmp_ok( $this, $op, $that, $test_name );
---
>   cmp_ok( $this, $op, $that, $test_comment );
601,602c601,602
<   pass($test_name);
<   fail($test_name);
---
>   pass($test_comment);
>   fail($test_comment);
995c995
<   is_deeply( $this, $that, $test_name );
---
>   is_deeply( $this, $that, $test_comment );
1021c1021
<     my($this, $that, $name) = @_;
---
>     my($this, $that, $comment) = @_;
1028c1028
<         $ok = $Test->is_eq($this, $that, $name);
---
>         $ok = $Test->is_eq($this, $that, $comment);
1034c1034
<             $ok = $Test->ok(1, $name);
---
>             $ok = $Test->ok(1, $comment);
1037c1037
<             $ok = $Test->ok(0, $name);
---
>             $ok = $Test->ok(0, $comment);
diff -r /Users/stevan/Desktop/Test-Simple/lib/Test/Simple.pm lib/Test/Simple.pm
62c62
<   ok( $foo eq $bar, $name );
---
>   ok( $foo eq $bar, $comment );
74c74
< If you provide a $name, that will be printed along with the "ok/not
---
> If you provide a $comment, that will be printed along with the "ok/not
76,77c76,77
< the name).  It also makes it easier for the next guy to understand
< what your test is for.  It's highly recommended you use test names.
---
> the comment).  It also makes it easier for the next guy to understand
> what your test is for.  It's highly recommended you use test comments.
diff -r /Users/stevan/Desktop/Test-Simple/lib/Test/Tutorial.pod lib/Test/Tutorial.pod
117c117
< =head2 Names
---
> =head2 Comments
122c122
< Each test can be given a little descriptive name as the second
---
> Each test can be given a little descriptive comment as the second
325c325
< =head2 Informative names
---
> =head2 Informative comments
332c332
< itself we're trying out to the name.  So you get results like:
---
> itself we're trying out to the comment.  So you get results like:
345c345
< debugging information into the test names.
---
> debugging information into the test comments.
