summaryrefslogtreecommitdiff
path: root/lib/Git/Annex.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Git/Annex.pm')
-rw-r--r--lib/Git/Annex.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Git/Annex.pm b/lib/Git/Annex.pm
index bb24b13..1cd26f4 100644
--- a/lib/Git/Annex.pm
+++ b/lib/Git/Annex.pm
@@ -78,7 +78,7 @@ Returns the toplevel of the repository.
=cut
-has "toplevel", is => 'ro';
+has toplevel => (is => 'ro');
=head2 git
@@ -86,7 +86,7 @@ Returns an instance of L<Git::Wrapper> initialised in the repository.
=cut
-has "git" => (
+has git => (
is => 'lazy',
default => sub { Git::Wrapper->new(shift->toplevel) });
@@ -96,7 +96,7 @@ Returns an instance of L<Git::Repository> initialised in the repository.
=cut
-has "repo" => (
+has repo => (
is => 'lazy',
# we don't know (here) whether our repo is bare or not, so we
# don't know whether to use the git_dir or work_tree arguments to