Skip to content

Commit 1475627

Browse files
committed
Use parameters' names in description
1 parent 039a4fd commit 1475627

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Type/Test.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Defined as
152152
multi sub is(Mu $got, Mu:U $expected, $desc = '')
153153
multi sub is(Mu $got, Mu:D $expected, $desc = '')
154154
155-
Marks a test as passed if C<$value> and C<$expected> compare positively with the
155+
Marks a test as passed if C<$got> and C<$expected> compare positively with the
156156
L«C<eq> operator|/routine/eq», unless C<$expected> is a type object, in which case
157157
L«C<===> operator|/routine/===» will be used instead; accepts an optional description of the
158158
test as the last argument.
@@ -186,7 +186,7 @@ Defined as:
186186
multi sub isnt(Mu $got, Mu:U $expected, $desc = '')
187187
multi sub isnt(Mu $got, Mu:D $expected, $desc = '')
188188
189-
Marks a test as passed if C<$value> and C<$expected> are B<not> equal using
189+
Marks a test as passed if C<$got> and C<$expected> are B<not> equal using
190190
the same rules as C<is()>. The function accepts an optional description
191191
of the test.
192192

0 commit comments

Comments
 (0)