diff options
Diffstat (limited to 'extensions/example/lib')
-rw-r--r-- | extensions/example/lib/WSExample.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/example/lib/WSExample.pm b/extensions/example/lib/WSExample.pm index 146867294..754d49f70 100644 --- a/extensions/example/lib/WSExample.pm +++ b/extensions/example/lib/WSExample.pm @@ -24,7 +24,7 @@ use warnings; use base qw(Bugzilla::WebService); use Bugzilla::Error; -# This can be called as Example.hello() from XML-RPC. +# This can be called as Example.hello() from the WebService. sub hello { return 'Hello!'; } sub throw_an_error { ThrowUserError('example_my_error') } |