Skip to content

Commit 01c9342

Browse files
committed
Fix typos
1 parent f9aa41d commit 01c9342

File tree

16 files changed

+31
-31
lines changed

16 files changed

+31
-31
lines changed

docs/tut/1-Overview/1.1-Bird's-eye-view-of-Qiskit-Metal.ipynb

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

docs/tut/1-Overview/1.2-Quick-start.ipynb

Lines changed: 13 additions & 13 deletions
Large diffs are not rendered by default.

docs/tut/2-From-components-to-chip/2.01-How-to-use-a-QComponent.ipynb

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

qiskit_metal/qlibrary/lumped/resonator_coil_rect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class ResonatorCoilRect(QComponent):
6969
modified by the code based on the total length inputed."""
7070

7171
def make(self):
72-
"""The make function implements the logic that creates the geoemtry
72+
"""The make function implements the logic that creates the geometry
7373
(poly, path, etc.) from the qcomponent.options dictionary of
7474
parameters, and the adds them to the design, using
7575
qcomponent.add_qgeometry(...), adding in extra needed information, such
@@ -85,7 +85,7 @@ def make(self):
8585
(2 * n - 1))
8686

8787
if x_n <= p.gap + p.line_width:
88-
self._error_message = f'Inputted values results in the width of the spiral being too small.'
88+
self._error_message = 'Inputted values results in the width of the spiral being too small.'
8989
self.logger.warning(self._error_message)
9090
return
9191

qiskit_metal/qlibrary/qubits/transmon_pocket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class TransmonPocket(BaseQubit):
138138
def make(self):
139139
"""Define the way the options are turned into QGeometry.
140140
141-
The make function implements the logic that creates the geoemtry
141+
The make function implements the logic that creates the geometry
142142
(poly, path, etc.) from the qcomponent.options dictionary of
143143
parameters, and the adds them to the design, using
144144
qcomponent.add_qgeometry(...), adding in extra needed

qiskit_metal/qlibrary/qubits/transmon_pocket_6.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class TransmonPocket6(BaseQubit):
145145
def make(self):
146146
"""Define the way the options are turned into QGeometry.
147147
148-
The make function implements the logic that creates the geoemtry
148+
The make function implements the logic that creates the geometry
149149
(poly, path, etc.) from the qcomponent.options dictionary of
150150
parameters, and the adds them to the design, using
151151
qcomponent.add_qgeometry(...), adding in extra needed

qiskit_metal/qlibrary/qubits/transmon_pocket_teeth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class TransmonPocketTeeth(BaseQubit):
141141
def make(self):
142142
"""Define the way the options are turned into QGeometry.
143143
144-
The make function implements the logic that creates the geoemtry
144+
The make function implements the logic that creates the geometry
145145
(poly, path, etc.) from the qcomponent.options dictionary of
146146
parameters, and the adds them to the design, using
147147
qcomponent.add_qgeometry(...), adding in extra needed

qiskit_metal/qlibrary/sample_shapes/circle_caterpillar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class CircleCaterpillar(QComponent):
5555
TOOLTIP = """A single configurable circle"""
5656

5757
def make(self):
58-
"""The make function implements the logic that creates the geoemtry
58+
"""The make function implements the logic that creates the geometry
5959
(poly, path, etc.) from the qcomponent.options dictionary of
6060
parameters, and the adds them to the design, using
6161
qcomponent.add_qgeometry(...), adding in extra needed information, such

qiskit_metal/qlibrary/sample_shapes/circle_raster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class CircleRaster(QComponent):
5151
TOOLTIP = """A single configurable circle"""
5252

5353
def make(self):
54-
"""The make function implements the logic that creates the geoemtry
54+
"""The make function implements the logic that creates the geometry
5555
(poly, path, etc.) from the qcomponent.options dictionary of
5656
parameters, and the adds them to the design, using
5757
qcomponent.add_qgeometry(...), adding in extra needed information, such

qiskit_metal/qlibrary/sample_shapes/n_gon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class NGon(QComponent):
4747
TOOLTIP = """A n-gon polygon"""
4848

4949
def make(self):
50-
"""The make function implements the logic that creates the geoemtry
50+
"""The make function implements the logic that creates the geometry
5151
(poly, path, etc.) from the qcomponent.options dictionary of
5252
parameters, and the adds them to the design, using
5353
qcomponent.add_qgeometry(...), adding in extra needed information, such

0 commit comments

Comments
 (0)