From 7e722caf40fdf3297ff045c44802eccc9e7fa6b2 Mon Sep 17 00:00:00 2001 From: Seth Kazarians Date: Wed, 31 Mar 2021 15:10:21 -0700 Subject: [PATCH] Fixed Typos in source files per recommendation from @set-soft. --- docs/README.in | 2 +- kibot/out_any_drill.py | 2 +- kibot/out_dxf.py | 2 +- kibot/out_gerber.py | 2 +- kibot/out_step.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/README.in b/docs/README.in index d4c2c840..3181e807 100644 --- a/docs/README.in +++ b/docs/README.in @@ -113,7 +113,7 @@ preflight: #### Filtering DRC and ERC errors Sometimes KiCad reports DRC or ERC errors that you can't get rid off. -This could be just because you are part of a team including lazzy people that doesn't want to take the extra effort to solve +This could be just because you are part of a team including lazy people that doesn't want to take the extra effort to solve some errors that aren't in fact errors, just small violations made on purpose. In this case you could exclude some known errors. For this you must declare `filters` entry in the `preflight` section. Then you can add as many `filter` entries as you want. diff --git a/kibot/out_any_drill.py b/kibot/out_any_drill.py index 9c955ab1..ec3aa6fb 100644 --- a/kibot/out_any_drill.py +++ b/kibot/out_any_drill.py @@ -48,7 +48,7 @@ class AnyDrill(BaseOptions): # Options with document: self.use_aux_axis_as_origin = False - """ Use the auxiliar axis as origin for coordinates """ + """ Use the auxiliary axis as origin for coordinates """ self.map = DrillMap """ [dict|string] [hpgl,ps,gerber,dxf,svg,pdf] Format for a graphical drill map. Not generated unless a format is specified """ diff --git a/kibot/out_dxf.py b/kibot/out_dxf.py index 321a3eda..223a80f7 100644 --- a/kibot/out_dxf.py +++ b/kibot/out_dxf.py @@ -21,7 +21,7 @@ class DXFOptions(DrillMarks): super().__init__() with document: self.use_aux_axis_as_origin = False - """ Use the auxiliar axis as origin for coordinates """ + """ Use the auxiliary axis as origin for coordinates """ self.polygon_mode = True """ Plot using the contour, instead of the center line """ self.metric_units = False diff --git a/kibot/out_gerber.py b/kibot/out_gerber.py index d4f1d292..f8f9b461 100644 --- a/kibot/out_gerber.py +++ b/kibot/out_gerber.py @@ -17,7 +17,7 @@ class GerberOptions(AnyLayerOptions): def __init__(self): with document: self.use_aux_axis_as_origin = False - """ Use the auxiliar axis as origin for coordinates """ + """ Use the auxiliary axis as origin for coordinates """ self.line_width = 0.1 """ [0.02,2] Line_width for objects without width [mm] (KiCad 5) """ self.subtract_mask_from_silk = False diff --git a/kibot/out_step.py b/kibot/out_step.py index 7ada17de..481ff411 100644 --- a/kibot/out_step.py +++ b/kibot/out_step.py @@ -28,7 +28,7 @@ class STEPOptions(VariantOptions): """ Use metric units instead of inches """ self._origin = 'grid' """ Determines the coordinates origin. Using grid the coordinates are the same as you have in the design sheet. - The drill option uses the auxiliar reference defined by the user. + The drill option uses the auxiliary reference defined by the user. You can define any other origin using the format 'X,Y', i.e. '3.2,-10' """ self.no_virtual = False """ Used to exclude 3D models for components with 'virtual' attribute """