From 8de9129e65c9c424d8d7c0ae512309fd331b3bf3 Mon Sep 17 00:00:00 2001 From: onefloid <33193059+onefloid@users.noreply.github.com> Date: Sun, 3 Oct 2021 18:18:33 +0200 Subject: [PATCH] Fix typo in keyword in the docs --- lib/DBIx/Class/Schema/Loader/Base.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DBIx/Class/Schema/Loader/Base.pm b/lib/DBIx/Class/Schema/Loader/Base.pm index 4fdc9e79c..3b93cc289 100644 --- a/lib/DBIx/Class/Schema/Loader/Base.pm +++ b/lib/DBIx/Class/Schema/Loader/Base.pm @@ -444,7 +444,7 @@ For example: if ($p{local_table} eq 'dogs' && @{$p{local_cols}} == 1 && $p{local_cols}[0] eq 'name') { $p{attrs}{could_be_snoopy} = 1; - reutrn $p{attrs}; + return $p{attrs}; } },