diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-02 13:56:57 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-02 13:56:57 +0100 |
commit | fc3af9b31f71c93b4824e8558dda60e4d5efe6f5 (patch) | |
tree | 744d02478c1150d8b3c51186c13e297d0b02bd40 | |
parent | b07c28db46f93f57a25b1b0210761f257fd05fbd (diff) | |
download | bugzilla-fc3af9b31f71c93b4824e8558dda60e4d5efe6f5.tar.gz bugzilla-fc3af9b31f71c93b4824e8558dda60e4d5efe6f5.tar.xz |
Fix typo
-rw-r--r-- | Bugzilla/Object.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm index 70ca1a5f0..d4574abd2 100644 --- a/Bugzilla/Object.pm +++ b/Bugzilla/Object.pm @@ -964,7 +964,7 @@ for each placeholder in C<condition>, in order. This is to allow subclasses to have complex parameters, and then to translate those parameters into C<condition> and C<values> when they -call C<$self->SUPER::new> (which is this function, usually). +call C<< $self->SUPER::new >> (which is this function, usually). If you try to call C<new> outside of a subclass with the C<condition> and C<values> parameters, Bugzilla will throw an error. These parameters |