The #10792 didn't take, and s/sighni/signi/, as noticed by
[p5sagit/p5-mst-13.2.git] / lib / Locale / Maketext.pod
index ef5e66e..e629b90 100644 (file)
@@ -110,7 +110,9 @@ These are to do with constructing a language handle:
 
 =over
 
-=item $lh = YourProjClass->get_handle( ...langtags... ) || die "lg-handle?";
+=item  *
+
+$lh = YourProjClass->get_handle( ...langtags... ) || die "lg-handle?";
 
 This tries loading classes based on the language-tags you give (like
 C<("en-US", "sk", "kon", "es-MX", "ja", "i-klingon")>, and for the first class
@@ -131,7 +133,9 @@ then if nothing comes of that, we use classes named by
 YourProjClass->fallback_language_classes().  Then in the (probably
 quite unlikely) event that that fails, we just return undef.
 
-=item $lh = YourProjClass->get_handleB<()> || die "lg-handle?";
+=item *
+
+$lh = YourProjClass->get_handleB<()> || die "lg-handle?";
 
 When C<get_handle> is called with an empty parameter list, magic happens:
 
@@ -171,13 +175,17 @@ file, you might consider something like this in your project class:
     return $lh;
   }
 
-=item $lh = YourProjClass::langname->new();
+=item *
+
+$lh = YourProjClass::langname->new();
 
 This constructs a language handle.  You usually B<don't> call this
 directly, but instead let C<get_handle> find a language class to C<use>
 and to then call ->new on.
 
-=item $lh->init();
+=item *
+
+$lh->init();
 
 This is called by ->new to initialize newly-constructed language handles.
 If you define an init method in your class, remember that it's usually
@@ -185,7 +193,9 @@ considered a good idea to call $lh->SUPER::init in it (presumably at the
 beginning), so that all classes get a chance to initialize a new object
 however they see fit.
 
-=item YourProjClass->fallback_languages()
+=item *
+
+YourProjClass->fallback_languages()
 
 C<get_handle> appends the return value of this to the end of
 whatever list of languages you pass C<get_handle>.  Unless
@@ -201,7 +211,9 @@ C<get_handle> will always manage to construct a language
 handle (assuming your language classes are in an appropriate
 @INC directory).  Or you can use the next method:
 
-=item YourProjClass->fallback_language_classes()
+=item *
+
+YourProjClass->fallback_language_classes()
 
 C<get_handle> appends the return value of this to the end
 of the list of classes it will try using.  Unless