diff --git a/README.md b/README.md index 38ad690..fae263e 100644 --- a/README.md +++ b/README.md @@ -39,4 +39,4 @@ pip3 install git+https://mpxd.net/code/jan/masque.git@release * Construct from bitmap * Boolean operations on polygons (using pyclipper) * Implement shape/cell properties -* Implement OASIS-style repetitions for shapes +* Deal with shape repetitions for dxf, svg diff --git a/masque/file/gdsii.py b/masque/file/gdsii.py index b7885ac..b87271c 100644 --- a/masque/file/gdsii.py +++ b/masque/file/gdsii.py @@ -142,8 +142,8 @@ def write(patterns: Union[Pattern, List[Pattern]], Args: patterns: A Pattern or list of patterns to write to file. stream: Stream to write to. - *args: passed to `oasis.build()` - **kwargs: passed to `oasis.build()` + *args: passed to `masque.file.gdsii.build()` + **kwargs: passed to `masque.file.gdsii.build()` """ lib = build(patterns, *args, **kwargs) lib.save(stream)