diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index e346fc165f07cfbe4e4381125afeab3801d342ca..917649604b555feb749f4f73b0eb2207ed4e4b17 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -72,7 +72,7 @@ def register():
             default="", maxlen=1024, subtype="DIR_PATH")
     Scene.pov_list_lf_enable = BoolProperty(
             name="LF in lists",
-            description="Enable line brakes in lists (vectors and indices). Disabled: lists are exported in one line.",
+            description="Enable line breaks in lists (vectors and indices). Disabled: lists are exported in one line.",
             default=True)
 
     # Not a real pov option, just to know if we should write
diff --git a/render_povray/ui.py b/render_povray/ui.py
index 722622e1fb758e13b71b78d911d59331e3649b4b..4a68bc7047dc5021a0e5b2461a2c0a5a8378f6af 100644
--- a/render_povray/ui.py
+++ b/render_povray/ui.py
@@ -182,7 +182,7 @@ class RENDER_PT_povray_export_settings(RenderButtonsPanel, bpy.types.Panel):
             col = split.column()
             col.prop(scene, "pov_comments_enable", text="Comments")
             col = split.column()
-            col.prop(scene, "pov_list_lf_enable", text="Line brakes in lists")
+            col.prop(scene, "pov_list_lf_enable", text="Line breaks in lists")
 
 
 class RENDER_PT_povray_render_settings(RenderButtonsPanel, bpy.types.Panel):