@@ -522,17 +522,17 @@ The :mod:`calendar` module exports the following data attributes:
522522
523523 .. caution ::
524524
525- In locales with alternative forms of month names, the :data: `!month_abbr ` sequence
525+ In locales with alternative month names forms , the :data: `!month_abbr ` sequence
526526 may not be suitable when a month name stands by itself and not as part of a date.
527527 Use :data: `standalone_month_abbr ` for a form suitable for standalone use.
528528
529529
530530.. data :: standalone_month_name
531531
532532 A sequence that represents the months of the year in the current locale
533- in the grammatical form used when a month name stands by itself if the locale
534- provides one. If the locale does not supply an alternative form, it is equal to
535- :data: `month_name `.
533+ in the grammatical form used when a month name stands by itself if
534+ the locale provides one. If the locale does not supply a standalone form,
535+ it is equal to :data: `month_name `.
536536
537537 >>> import calendar
538538 >>> list (calendar.standalone_month_name)
@@ -544,9 +544,9 @@ The :mod:`calendar` module exports the following data attributes:
544544.. data :: standalone_month_abbr
545545
546546 A sequence that represents the abbreviated months of the year in the current
547- locale in the grammatical form used when a month name stands by itself if the
548- locale provides one. If the locale does not supply an alternative form, it is equal to
549- :data: `month_abbr `.
547+ locale in the grammatical form used when a month name stands by itself if
548+ the locale provides one. If the locale does not supply a standalone form
549+ it is equal to :data: `month_abbr `.
550550
551551 >>> import calendar
552552 >>> list (calendar.standalone_month_abbr)
0 commit comments