diff --git a/source/text/sbasic/shared/enum.xhp b/source/text/sbasic/shared/enum.xhp
index f891c7cbfb..8c89169761 100644
--- a/source/text/sbasic/shared/enum.xhp
+++ b/source/text/sbasic/shared/enum.xhp
@@ -27,15 +27,16 @@
Within a given enumeration, fit together values that logically relate to one another.
- Option VBASupport 1
- Private Enum _WindowManager
- W1ND0WS = 1 ' Windows
- OS2PM = 2 ' OS/2 Presentation Manager
- MACINTOSH = 3 ' Macintosh
- MOTIF = 4 ' Motif Window Manager / Unix-like
- OPENLOOK = 5 ' Open Look / Unix-like
- End Enum
-
+
+ Option VBASupport 1
+ Private Enum _WindowManager
+ W1ND0WS = 1 ' Windows
+ OS2PM = 2 ' OS/2 Presentation Manager
+ MACINTOSH = 3 ' Macintosh
+ MOTIF = 4 ' Motif Window Manager / Unix-like
+ OPENLOOK = 5 ' Open Look / Unix-like
+ End Enum
+
Enumerated values are rendered to Long datatype. Basic functions are public accessors to enumerations. Enumeration names and value names must be unique within a library and across modules.