From d32a5ee762597304e5efcda48cd4aac5bb0f1a7b Mon Sep 17 00:00:00 2001 From: jan Date: Sun, 8 Mar 2026 14:51:51 -0700 Subject: [PATCH] [dxf] fix typos --- masque/file/dxf.py | 2 +- masque/file/gdsii.py | 2 +- masque/shapes/poly_collection.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/masque/file/dxf.py b/masque/file/dxf.py index 0f6dd32..e8c7486 100644 --- a/masque/file/dxf.py +++ b/masque/file/dxf.py @@ -55,7 +55,7 @@ def write( tuple: (1, 2) -> '1.2' str: '1.2' -> '1.2' (no change) - DXF does not support shape repetition (only block repeptition). Please call + DXF does not support shape repetition (only block repetition). Please call library.wrap_repeated_shapes() before writing to file. Other functions you may want to call: diff --git a/masque/file/gdsii.py b/masque/file/gdsii.py index 6972cfa..d78f591 100644 --- a/masque/file/gdsii.py +++ b/masque/file/gdsii.py @@ -82,7 +82,7 @@ def write( datatype is chosen to be `shape.layer[1]` if available, otherwise `0` - GDS does not support shape repetition (only cell repeptition). Please call + GDS does not support shape repetition (only cell repetition). Please call `library.wrap_repeated_shapes()` before writing to file. Other functions you may want to call: diff --git a/masque/shapes/poly_collection.py b/masque/shapes/poly_collection.py index c714ed5..711acc4 100644 --- a/masque/shapes/poly_collection.py +++ b/masque/shapes/poly_collection.py @@ -84,7 +84,7 @@ class PolyCollection(Shape): def set_offset(self, val: ArrayLike) -> Self: if numpy.any(val): - raise PatternError('Path offset is forced to (0, 0)') + raise PatternError('PolyCollection offset is forced to (0, 0)') return self def translate(self, offset: ArrayLike) -> Self: