summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToby Inkster <mail@tobyinkster.co.uk>2019-12-10 15:25:58 +0000
committerToby Inkster <mail@tobyinkster.co.uk>2019-12-10 15:25:58 +0000
commite05ce22832ab77ba5cd1743c133af59d731b1beb (patch)
treefff2115fcef250568a6932093ca6df53d07d77f4
parent00a8775684ae2a20ae0cf2eb81b58d8b1d44cfd8 (diff)
bold for types
-rw-r--r--lib/Type/Tiny/Manual/UsingWithMoo2.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Type/Tiny/Manual/UsingWithMoo2.pod b/lib/Type/Tiny/Manual/UsingWithMoo2.pod
index 29b3abc4..8df56a03 100644
--- a/lib/Type/Tiny/Manual/UsingWithMoo2.pod
+++ b/lib/Type/Tiny/Manual/UsingWithMoo2.pod
@@ -24,7 +24,7 @@ the B<Int> type is and is responsible for checking values meet its definition.
my $type = HashRef[Int];
The C<< HashRef >> function, if called with no parameters returns the object
-defining the C<HashRef> type, just like the C<< Int >> function did before.
+defining the B<HashRef> type, just like the C<< Int >> function did before.
But the difference here is that it's called with a parameter, an arrayref
containing the B<Int> type object. It uses this to make the B<< HashRef[Int] >>
type and returns that.