Fix source comment / documentation typos

This commit is contained in:
luz paz
2021-06-09 19:32:58 +00:00
committed by Seth Hillbrand
parent 053bd66650
commit f968fc8719
261 changed files with 422 additions and 422 deletions
@@ -31,7 +31,7 @@ class add_automatic_border( ActionPlugin ):
How to use:
- add all your modules/track/area/text...
- Call the plugin
- An including PCB edge will be created automaticaly
- An including PCB edge will be created automatically
"""
def defaults( self ):
@@ -44,7 +44,7 @@ class add_automatic_border( ActionPlugin ):
"""
self.name = "Add or update automatic PCB edges"
self.category = "Modify PCB"
self.description = "Automaticaly add or update edges on an existing PCB"
self.description = "Automatically add or update edges on an existing PCB"
# Offset between existing elements and edge we will add/update (fixed at 2.54mm)
self.offset = FromMM( 2.54 )
# Attach to a grid step (fixed at 2.54mm)
@@ -31,7 +31,7 @@ class text_by_date( pcbnew.ActionPlugin ):
How to use:
- Add a text on your board with the content '$date$'
- Call the plugin
- Automaticaly the date will be added to the text (format YYYY-MM-DD)
- Automatically the date will be added to the text (format YYYY-MM-DD)
"""
def defaults( self ):
@@ -44,7 +44,7 @@ class text_by_date( pcbnew.ActionPlugin ):
"""
self.name = "Add date on PCB"
self.category = "Modify PCB"
self.description = "Automaticaly add date on an existing PCB"
self.description = "Automatically add date on an existing PCB"
def Run( self ):
pcb = pcbnew.GetBoard()