]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1428580 - Various spelling fixes. r=mcote
authorklemens <ka7@la-evento.com>
Tue, 9 Jan 2018 19:13:37 +0000 (14:13 -0500)
committerMark Cote <mcote@alumni.uwaterloo.ca>
Tue, 9 Jan 2018 19:13:37 +0000 (14:13 -0500)
38 files changed:
Bugzilla.pm
Bugzilla/API/1_0/Resource/Bug.pm
Bugzilla/API/1_0/Resource/FlagType.pm
Bugzilla/API/1_0/Resource/User.pm
Bugzilla/API/Server.pm
Bugzilla/Auth.pm
Bugzilla/Auth/Verify/LDAP.pm
Bugzilla/BugUserLastVisit.pm
Bugzilla/CGI.pm
Bugzilla/Config.pm
Bugzilla/Config/Common.pm
Bugzilla/DB.pm
Bugzilla/DB/Oracle.pm
Bugzilla/DB/Schema.pm
Bugzilla/DB/Sqlite.pm
Bugzilla/Field.pm
Bugzilla/Hook.pm
Bugzilla/Install/Util.pm
Bugzilla/User.pm
Bugzilla/User/APIKey.pm
Bugzilla/WebService/Bug.pm
Bugzilla/WebService/FlagType.pm
Bugzilla/WebService/User.pm
Makefile.PL
docs/en/rst/api/core/v1/attachment.rst
docs/en/rst/api/core/v1/bug.rst
docs/en/rst/api/core/v1/comment.rst
docs/en/rst/api/core/v1/user.rst
docs/en/rst/integrating/faq.rst
extensions/Example/Config.pm
migrate.pl
template/en/default/admin/keywords/edit.html.tmpl
template/en/default/admin/params/auth.html.tmpl
template/en/default/global/messages.html.tmpl
template/en/default/pages/markdown.html.tmpl
xt/rest/bugzilla.t
xt/selenium/user_matching.t
xt/webservice/bugzilla.t

index 5a57dbab2a035f3734fb94b27d0f8147d247dfde..ea15aafca4ab04fc7b4b1722fd62da7c2d26c3dd 100644 (file)
@@ -758,7 +758,7 @@ Note that items accessible via this object are demand-loaded when requested.
 
 For something to be added to this object, it should either be able to benefit
 from persistence when run under mod_perl (such as the a C<template> object),
-or should be something which is globally required by a large ammount of code
+or should be something which is globally required by a large amount of code
 (such as the current C<user> object).
 
 =head1 METHODS
index b0182a5e3db3c56a159e9e26e187c0a2cfef0983..2c62139a40d2eeba272e74b50125212ae431a314 100644 (file)
@@ -1083,7 +1083,7 @@ sub update_attachment {
             $attachment->set_flags($update_flags, $new_flags) if $flags;
         }
         elsif (scalar @$update_flags && !scalar(@$new_flags) && !scalar keys %$params) {
-            # Requestees can set flags targetted to them, even if they cannot
+            # Requestees can set flags targeted to them, even if they cannot
             # edit the attachment. Flag setters can edit their own flags too.
             my %flag_list = map { $_->{id} => $_ } @$update_flags;
             my $flag_objs = Bugzilla::Flag->new_from_list([ keys %flag_list ]);
@@ -1653,7 +1653,7 @@ for each field.
 
 =item B<REST>
 
-You have several options for retreiving information about fields. The first
+You have several options for retrieving information about fields. The first
 part is the request method and the rest is the related path needed.
 
 To get information about all fields:
@@ -4262,7 +4262,7 @@ the default for the product, when you move a bug to a new product.
 You may also wish to add or remove groups, as which groups are
 valid on a bug depends on the product. Groups that are not valid
 in the new product will be automatically removed, and groups which
-are mandatory in the new product will be automaticaly added, but no
+are mandatory in the new product will be automatically added, but no
 other automatic group changes will be done.
 
 Note that users can only move a bug into a product if they would
@@ -4756,7 +4756,7 @@ GET /rest/bug/comment/tags/<query>
 
 =item C<query>
 
-B<Required> C<string> Only tags containg this substring will be returned.
+B<Required> C<string> Only tags containing this substring will be returned.
 
 =item C<limit>
 
index febce6f717580c6943561a527b3faff02e73cfea..acc408bacba9b4713ffbc9bc7c8beb6c6b3cc6b8 100644 (file)
@@ -389,7 +389,7 @@ Get information about valid flag types that can be set for bugs and attachments.
 
 =item B<REST>
 
-You have several options for retreiving information about flag types. The first
+You have several options for retrieving information about flag types. The first
 part is the request method and the rest is the related path needed.
 
 To get information about all flag types for a product:
index e049f7f38b6c3cc638da1b72c0d88ed94bad3994..e8e4a73798abf8ee95479b69f30e7cacaf8f803c 100644 (file)
@@ -1179,7 +1179,7 @@ in Bugzilla B<4.4>.
 =item B<Description>
 
 Allows for validating a user's API key, token, or username and password.
-If sucessfully authenticated, it returns simple information about the
+If successfully authenticated, it returns simple information about the
 logged in user.
 
 =item B<Params> (none)
index a423f2f424304eb16ec51c662ffe21ef0e67bc7f..185d08430891de449ac0b414287d61b2062b3e0d 100644 (file)
@@ -281,7 +281,7 @@ sub _check_version {
         return DEFAULT_API_VERSION;
     }
 
-    # If we using an extension API, we need to determing which version of
+    # If we using an extension API, we need to determining which version of
     # the Core API it was written for.
     if (lc($namespace) ne 'core') {
         my $core_api_version;
index d693bf12d3f4d3dbfa1efa10123d90eb5ea6da13..9322be24bbd627b06217225877c41339e16c5567 100644 (file)
@@ -153,7 +153,7 @@ sub _handle_login_result {
 
     if (!$fail_code) {
         # We don't persist logins over GET requests in the WebService,
-        # because the persistance information can't be re-used again.
+        # because the persistence information can't be re-used again.
         # (See Bugzilla::WebService::Server::JSONRPC for more info.)
         if ($self->{_info_getter}->{successful}->requires_persistence
             and !Bugzilla->request_cache->{auth_no_automatic_login}) 
index 2ff38a2179081844bf06f7d314cdaf8c50221c3c..0e6b0ddfe1ccb08327adbfb1ba1b417160032e35 100644 (file)
@@ -102,7 +102,7 @@ sub check_credentials {
         $params->{email} = $emails[0];
 
         if (@emails > 1) {
-            # Cycle through the adresses and check if they're Bugzilla logins.
+            # Cycle through the addresses and check if they're Bugzilla logins.
             # Use the first one that returns a valid id. 
             foreach my $email (@emails) {
                 if ( email_to_id($email) ) {
index 1b4f90abf1e5b04d37206b8b3ae6cea90f00d25c..0e1c006b7d436f330a0ab4aa25b05c47ced9c83d 100644 (file)
@@ -14,7 +14,7 @@ use warnings;
 use parent qw(Bugzilla::Object);
 
 #####################################################################
-# Overriden Constants that are used as methods
+# Overridden Constants that are used as methods
 #####################################################################
 
 use constant DB_TABLE       => 'bug_user_last_visit';
index edfc7ba70f63dff4edcbb147720e72018c2acdab..766dabc80262ec1d7dff80f5abf8111b8f133045 100644 (file)
@@ -479,7 +479,7 @@ sub redirect_search_url {
     # If there is no parameter, there is nothing to do.
     return unless $self->param;
 
-    # If we're retreiving an old list, we never need to redirect or
+    # If we're retrieving an old list, we never need to redirect or
     # do anything related to Bugzilla::Search::Recent.
     return if $self->param('regetlastlist');
 
@@ -650,7 +650,7 @@ Bugzilla::CGI - CGI handling for Bugzilla
 
 This package inherits from the standard CGI module, to provide additional
 Bugzilla-specific functionality. In general, see L<the CGI.pm docs|CGI> for
-documention.
+documentation.
 
 =head1 CHANGES FROM L<CGI.PM|CGI>
 
index 8bd774b70941170e2773e68ca37af9eb7b525742..0f1324080592ba1520cac47f40df31ce04c2e92e 100644 (file)
@@ -35,7 +35,7 @@ use File::Basename;
   );
 Exporter::export_ok_tags('admin');
 
-# new installs get these set of defaults (unless overriden by the answers file)
+# new installs get these set of defaults (unless overridden by the answers file)
 my %NEW_INSTALL_DEFAULT = (
     or_groups          => 1,
     use_email_as_login => 0,
index e6e0d4a2336f709535e8608217c81b51cd313baa..633325291accdffb4b47231210ed364d773c150f 100644 (file)
@@ -472,7 +472,7 @@ in the relevant F<Bugzilla::Config::*> package.
 =item C<check_multi>
 
 Checks that a multi-valued parameter (ie types C<s>, C<o> or C<m>) satisfies
-its contraints.
+its constraints.
 
 =item C<check_numeric>
 
index 51d736f2733c6f8a692f4adc0fa46af658fe8ecf..ec5d1ed96d9338b48ded932903b1a8676c327aa3 100644 (file)
@@ -1868,7 +1868,7 @@ Formatted SQL for negative regular expression search (e.g. NOT REGEXP)
 =item B<Description>
 
 Returns SQL syntax for limiting results to some number of rows
-with optional offset if not starting from the begining.
+with optional offset if not starting from the beginning.
 
 Abstract method, should be overridden by database specific code.
 
@@ -2012,7 +2012,7 @@ Formatted SQL for adding or subtracting a date and some amount of time (scalar)
 =item B<Description>
 
 Outputs proper SQL syntax determining position of a substring
-(fragment) withing a string (text). Note: if the substring or
+(fragment) within a string (text). Note: if the substring or
 text are string constants, they must be properly quoted (e.g. "'pattern'").
 
 It searches for the string in a case-sensitive manner. If you want to do
@@ -2101,7 +2101,7 @@ This is a case insensitive search.
 
 =item B<Returns>
 
-Formated sql to return results from columns that do not contain the fragment
+Formatted sql to return results from columns that do not contain the fragment
 
 =back
 
@@ -2190,7 +2190,7 @@ specified text on a given column.
 
 If one value is returned, it is a numeric expression that indicates
 a match with a positive value and a non-match with zero. In this case,
-the DB must support casting numeric expresions to booleans.
+the DB must support casting numeric expressions to booleans.
 
 If two values are returned, then the first value is a boolean expression
 that indicates the presence of a match, and the second value is a numeric
@@ -2762,7 +2762,7 @@ Returns nothing and takes no parameters.
 
 =item C<bz_commit_transaction>
 
-Ends a transaction, commiting all changes. Returns nothing and takes
+Ends a transaction, committing all changes. Returns nothing and takes
 no parameters.
 
 =item C<bz_rollback_transaction>
index 28b6e8c7457970ab6b36087232180d9e2d6d63e7..981f1dbf170168aabb3043c39273bec706c8af5b 100644 (file)
@@ -54,7 +54,7 @@ sub new {
     # and there is no default DB.
     $dbname ||= Bugzilla->localconfig->{db_name};
 
-    # Set the language enviroment
+    # Set the language environment
     $ENV{'NLS_LANG'} = '.AL32UTF8';
 
     # construct the DSN from the parameters we got
index 062dd73f4a7af6979b635f57db102936bf683e75..0a31c8d1af9fba022fc2e6fb0d68f41fa9c8a027 100644 (file)
@@ -1971,7 +1971,7 @@ sub get_type_ddl {
 
 Public method to convert abstract (database-generic) field specifiers to
 database-specific data types suitable for use in a C<CREATE TABLE> or 
-C<ALTER TABLE> SQL statment. If no database-specific field type has been
+C<ALTER TABLE> SQL statement. If no database-specific field type has been
 defined for the given field type, then it will just return the same field type.
 
 =item B<Parameters>
index 0ba3bd9c86fc4e85fbc9e193c87b9121da7cea61..cd31065be5d9e7ea8ff3d804749212ab193da353 100644 (file)
@@ -73,7 +73,7 @@ sub new {
     my ($class, $params) = @_;
     my $db_name = $params->{db_name};
     
-    # Let people specify paths intead of data/ for the DB.
+    # Let people specify paths instead of data/ for the DB.
     if ($db_name and $db_name !~ m{[\\/]}) {
         # When the DB is first created, there's a chance that the
         # data directory doesn't exist at all, because the Install::Filesystem
index e9f9e1b2d3e262ed84f6703cbf48da99aa32bb93..a43fb55e58e7b997f7a16a701308444c816aa48a 100644 (file)
@@ -987,7 +987,7 @@ sub remove_from_db {
 
     my $type = $self->type;
 
-    # the values for multi-select are stored in a seperate table
+    # the values for multi-select are stored in a separate table
     if ($type != FIELD_TYPE_MULTI_SELECT) {
         $dbh->bz_drop_column('bugs', $name);
     }
index 3f902cab07b472e707e19300b7edf355e0e93d90..82a342767c14e8478c571438851820b94e50a9ef 100644 (file)
@@ -1757,7 +1757,7 @@ they have been obtained from the URL or body of the request.
 =head2 webservice_rest_request
 
 This hook allows for altering any of the parameters provided by the client
-after authentication has occured. You are able to change things like renaming
+after authentication has occurred. You are able to change things like renaming
 of keys, removing values, or adding additional information.
 
 Params:
index fe5776175d5934f0484d468fd23ef7a049dbac2b..80820dcc680b58be6decb3f6e718e5ac58119df2 100644 (file)
@@ -431,7 +431,7 @@ sub _template_base_directories {
     # that Bugzilla templates are localized.
     #
     # We use extension_requirement_packages instead of Bugzilla->extensions
-    # because this fucntion is called during the requirements phase of 
+    # because this function is called during the requirements phase of 
     # installation (so Bugzilla->extensions isn't available).
     my $extensions = extension_requirement_packages();
     my @template_dirs;
index c1e3adee32af2215f55e3408d2ba16ec9809eb9b..b932a23c8e4a0fd726a2c8a3013c427e15a9377f 100644 (file)
@@ -2766,7 +2766,7 @@ containing the user's recent searches.
 =item C<recent_search_containing(bug_id)>
 
 Returns a L<Bugzilla::Search::Recent> object that contains the most recent
-search by the user for the specified bug id. Retuns undef if no match is found.
+search by the user for the specified bug id. Returns undef if no match is found.
 
 =item C<recent_search_for(bug)>
 
index 6a5124a3cee65939c0101e98333a461abc561fa4..41a091193e2392db9f495b5a382115e21633b31e 100644 (file)
@@ -17,7 +17,7 @@ use Bugzilla::User;
 use Bugzilla::Util qw(generate_random_password trim);
 
 #####################################################################
-# Overriden Constants that are used as methods
+# Overridden Constants that are used as methods
 #####################################################################
 
 use constant DB_TABLE       => 'user_api_keys';
index d137000a9f998d884f931486760218bc36aad779..82676b0b62e61d15b0564c58b0db52840f7ce58e 100644 (file)
@@ -958,7 +958,7 @@ sub update_attachment {
             $attachment->set_flags($update_flags, $new_flags) if $flags;
         }
         elsif (scalar @$update_flags && !scalar(@$new_flags) && !scalar keys %$params) {
-            # Requestees can set flags targetted to them, even if they cannot
+            # Requestees can set flags targeted to them, even if they cannot
             # edit the attachment. Flag setters can edit their own flags too.
             my %flag_list = map { $_->{id} => $_ } @$update_flags;
             my $flag_objs = Bugzilla::Flag->new_from_list([ keys %flag_list ]);
@@ -1546,7 +1546,7 @@ for each field.
 
 =item B<REST>
 
-You have several options for retreiving information about fields. The first
+You have several options for retrieving information about fields. The first
 part is the request method and the rest is the related path needed.
 
 To get information about all fields:
@@ -4194,7 +4194,7 @@ the default for the product, when you move a bug to a new product.
 You may also wish to add or remove groups, as which groups are
 valid on a bug depends on the product. Groups that are not valid
 in the new product will be automatically removed, and groups which
-are mandatory in the new product will be automaticaly added, but no
+are mandatory in the new product will be automatically added, but no
 other automatic group changes will be done.
 
 Note that users can only move a bug into a product if they would
@@ -4694,7 +4694,7 @@ GET /rest/bug/comment/tags/<query>
 
 =item C<query>
 
-B<Required> C<string> Only tags containg this substring will be returned.
+B<Required> C<string> Only tags containing this substring will be returned.
 
 =item C<limit>
 
index 8fa29b8d0bd6004a819a8e746b8e800d9d8b6efd..4c626914fae91f2bc924ff705e55f90c812998d8 100644 (file)
@@ -339,7 +339,7 @@ Get information about valid flag types that can be set for bugs and attachments.
 
 =item B<REST>
 
-You have several options for retreiving information about flag types. The first
+You have several options for retrieving information about flag types. The first
 part is the request method and the rest is the related path needed.
 
 To get information about all flag types for a product:
index 602e7e2cc32640ef0d381983b7b2b59f958895ce..98323d4e18941d01fe56f0a5d5686750434dd28f 100644 (file)
@@ -1149,7 +1149,7 @@ in Bugzilla B<4.4>.
 =item B<Description>
 
 Allows for validating a user's API key, token, or username and password.
-If sucessfully authenticated, it returns simple information about the
+If successfully authenticated, it returns simple information about the
 logged in user.
 
 =item B<Params> (none)
index 1d78e5e7847dc34a184e7d030f584ebe49924d84..3f8cbc945212529654343ea68038255b7a0bdbb2 100644 (file)
@@ -32,7 +32,7 @@ BEGIN {
 
 # META.json and META.yml exist only for the benefit of older
 # installs where cpanm can't get the optional features out of Makefile.PL
-# Unfortunately having META.json and META.yml commited to the repo is weird
+# Unfortunately having META.json and META.yml committed to the repo is weird
 # and MakeMaker always prefers their content to the internal data (unless CPAN::META
 # is not installed).
 # Since we (Bugzilla) require this cludge, we hide the files from MakeMaker.
index 08bbaa088ad1fbf64afb497e47e3e5a87f38c78c..65f862ff0a0c21f269e0f55d4351a3ceed5f3446 100644 (file)
@@ -94,7 +94,7 @@ creator           string    The login name of the user that created the
                             attachment.
 flags             array     Array of objects, each containing the information
                             about the flag currently set for each attachment.
-                            Each flag object contains items descibed in the
+                            Each flag object contains items described in the
                             Flag object below.
 ================  ========  =====================================================
 
index b8425577974875b265803ec51a0efa0891268a7f..9c62802b65789b049024007c16ff7be553585fe5 100644 (file)
@@ -915,7 +915,7 @@ product                string   The name of the product that the bug is in. If
                                 valid on a bug depends on the product. Groups
                                 that are not valid in the new product will be
                                 automatically removed, and groups which are
-                                mandatory in the new product will be automaticaly
+                                mandatory in the new product will be automatically
                                 added, but no other automatic group changes will
                                 be done.
 
index f015491b4301232af49e303c641442a1337aafea..5160495eaf6a4afc3e2a0bef5d6d8f8c9f914bc3 100644 (file)
@@ -221,7 +221,7 @@ Example:
 =========  ======  ====================================================
 name       type    description
 =========  ======  ====================================================
-**query**  string  Only tags containg this substring will be returned.
+**query**  string  Only tags containing this substring will be returned.
 limit      int     If provided will return no more than ``limit`` tags.
                    Defaults to ``10``.
 =========  ======  ====================================================
index 3e3f64bd6a6f8fcda05897560ecec0be4fd26c64..3942e50740089e228dd979adec8db51c05283955 100644 (file)
@@ -436,7 +436,7 @@ Who Am I
 --------
 
 Allows for validating a user's API key, token, or username and password.
-If sucessfully authenticated, it returns simple information about the
+If successfully authenticated, it returns simple information about the
 logged in user.
 
 **Request**
index 19f8b59ffa11b3b87eda46efd5979cc7682270a2..1b33e9623b7645bdcc41af98d7029dfa1adb2b6d 100644 (file)
@@ -8,7 +8,7 @@ How do I...
 
 ...add a new field on a bug?
   Use :ref:`custom-fields` or, if you just want new form fields on bug entry
-  but don't need Bugzilla to track the field seperately thereafter, you can
+  but don't need Bugzilla to track the field separately thereafter, you can
   use a :ref:`custom bug entry form <custom-bug-entry>`.
 
 ...change the name of a built-in bug field?
index 02ed01e77aa1668b228438cdc1861d6274152474..5f95d0b8bd674100fc37ff364c56c38e4acf78b2 100644 (file)
@@ -29,7 +29,7 @@ use constant OPTIONAL_MODULES => [
     },
 ];
 
-# The map determines which verion of
+# The map determines which version of
 # the Core API an extension's API modules
 # were written to work with.
 use constant API_VERSION_MAP => {
index 25b39b41416a2094e970dc73108aa0d3890d4fb8..0ce82f2a3fc4ed50ff9086a1cce45f02c22e3d41 100755 (executable)
@@ -95,5 +95,5 @@ the size of all attachments in your current bug-tracker.
 
 You may also need to increase the number of file handles a process is allowed
 to hold open (as the migrator will create a file handle for each attachment
-in your database). On Linux and simliar systems, you can do this as root
+in your database). On Linux and similar systems, you can do this as root
 by typing C<ulimit -n 65535> before running your script.
index 7e6617a848a615d1544383f6111e99d7ac8bca09..4151b2e4652a7128df068e5dc287951cb2c96fd7 100644 (file)
@@ -27,7 +27,7 @@
       <td><input id="is_active" name="is_active" type="checkbox" [% "checked" IF keyword.is_active %]></td>
     </tr>
     <tr>
-      <th><label for="decription">Description:</label></th>
+      <th><label for="description">Description:</label></th>
       <td>
         [% INCLUDE global/textarea.html.tmpl
           id             = 'description'
index 79fa8123beae0607a4640ee9b0755d31ccacb11e..5f8de90087cc0b7fa01822c3558e8848dac1f708 100644 (file)
     "If set, $terms.Bugzilla will check that the password meets the current " _
     "complexity rules and minimum length requirements  when the user logs " _
     "into the $terms.Bugzilla web interface. If it doesn't, the user would " _
-    "not be able to log in, and recieve a message to reset their password.",
+    "not be able to log in, and receive a message to reset their password.",
 
    auth_delegation =>
     "If set, $terms.Bugzilla will allow third party applications " _
index 4aec94f16f1036f7f893ecc0ec2f4588861ad7a5..13b31e3e689af6c8d19d0ab84a56dbeb3b2c021b 100644 (file)
 
   [% ELSIF message_tag == "flag_creation_failed" %]
     [% title = "Flag Creation Failure" %]
-    An error occured while validating flags:
+    An error occurred while validating flags:
     [%+ flag_creation_error FILTER none %]
 
   [% ELSIF message_tag == "get_field_desc" %]
     [% title = "Milestone Deleted" %]
     The milestone <em>[% milestone.name FILTER html %]</em> has been deleted.
     [% IF milestone.bug_count %]
-      [%+ terms.Bugs %] targetted to this milestone have been retargetted to
+      [%+ terms.Bugs %] targeted to this milestone have been retargetted to
       the default milestone <em>[% product.default_milestone FILTER html %]</em>.
     [% END %]
 
index 5b01ed43de3fce38ac11bcc4b8719ea042c47ad2..04d81711a669b21e05b0c9440d4c6a0cfb90c224 100644 (file)
   you can define links with link texts and titles. You may define your links
   either as inline or as a reference. To define a link as inline, put your link
   text in square bracket immediately followed by a pair of parentheses which
-  containts the URL that you want your link to point to and an <em>optional</em>
+  contains the URL that you want your link to point to and an <em>optional</em>
   link title surrounded by quotes.
 
   <p>
index 9878c1ce87a61ca14a1904b61f852827ef1e8c4a..7fcfff2d512f6a54b34fdcd6da52de4854fd0ffc 100644 (file)
@@ -33,7 +33,7 @@ ok(scalar(@ext_names), scalar(@ext_names) . ' extension(s) found: ' . join(', ',
 ok($extensions->{QA}, 'The QA extension is enabled, with version ' . $extensions->{QA}->{version});
 
 my $timezone = $rest->call('timezone')->{timezone};
-ok($timezone, "GET /rest/timezone retuns $timezone");
+ok($timezone, "GET /rest/timezone returns $timezone");
 
 my $time = $rest->call('time');
 foreach my $type (qw(db_time web_time)) {
index 26b9e009effdc12689976c46d9e53444def3257c..63f57820acd9e8f1d5fd1df8a073bbdcb88cd090 100644 (file)
@@ -178,7 +178,7 @@ ok(!grep($_ =~ /$config->{canconfirm_user_login}/, @cc), "$config->{canconfirm_u
 ok(grep($_ =~ /$config->{admin_user_login}/, @cc), "$config->{admin_user_login} is visible");
 ok(grep($_ =~ /$config->{tweakparams_user_login}/, @cc), "$config->{tweakparams_user_login} is visible");
 
-# Reset paramters.
+# Reset parameters.
 
 set_parameters($sel, { "User Matching"  => {"usemenuforusers-off" => undef,
                                             "maxusermatches"      => {type => 'text', value => '0'},
index 594d5e66b7cb221f67d357b72ce533b7ce973ad2..00c4fc27ac7ec017491299150f216ea62334df95 100644 (file)
@@ -27,7 +27,7 @@ foreach my $rpc (@clients) {
 
     my $tz_call = $rpc->bz_call_success('Bugzilla.timezone');
     my $tz = $tz_call->result->{timezone};
-    ok($tz, "Bugzilla.timezone retuns $tz");
+    ok($tz, "Bugzilla.timezone returns $tz");
 
     my $ext_call = $rpc->bz_call_success('Bugzilla.extensions');
     my $extensions = $ext_call->result->{extensions};