]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 807937: Fix POD
authorKoosha Khajeh Moogahi <koosha.khajeh@gmail.com>
Fri, 2 Nov 2012 12:49:37 +0000 (13:49 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Fri, 2 Nov 2012 12:49:37 +0000 (13:49 +0100)
r/a=LpSolit

Bugzilla/Object.pm

index 71ced8e9d2ea9ed751eab03d54dba8aeb71146f0..438c87590773c859a317efd8040a35f853e7f21f 100644 (file)
@@ -557,7 +557,7 @@ and into this object. This should be an array.
 The name of the column that should be considered to be the unique
 "name" of this object. The 'name' is a B<string> that uniquely identifies
 this Object in the database. Defaults to 'name'. When you specify 
-C<{name => $name}> to C<new()>, this is the column that will be 
+C<< {name => $name} >> to C<new()>, this is the column that will be 
 matched against in the DB.
 
 =item C<ID_FIELD>
@@ -797,8 +797,9 @@ Notes:       In order for this function to work in your subclass,
              type in the database. Your subclass also must
              define L</REQUIRED_CREATE_FIELDS> and L</VALIDATORS>.
 
-             Subclass Implementors: This function basically just
-             calls L</check_required_create_fields>, then
+Subclass Implementors:
+             This function basically just calls 
+             L</check_required_create_fields>, then
              L</run_create_validators>, and then finally
              L</insert_create_data>. So if you have a complex system that
              you need to implement, you can do it by calling these
@@ -985,9 +986,9 @@ C<0> otherwise.
 
  Returns:     A list of objects, or an empty list if there are none.
 
- Notes:       Note that you must call this as C<$class->get_all>. For 
-              example, C<Bugzilla::Keyword->get_all>
-              C<Bugzilla::Keyword::get_all> will not work.
+ Notes:       Note that you must call this as $class->get_all. For 
+              example, Bugzilla::Keyword->get_all
+              Bugzilla::Keyword::get_all will not work.
 
 =back