Skip to content

Commit c2e266b

Browse files
author
Tim 'mithro' Ansell
authored
Merge pull request #234 from mithro/more-typos
More typo fixes.
2 parents 6f419de + b4828cc commit c2e266b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dependency_support/com_google_skywater_pdk/build_defs.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,15 @@ skywater_corner = rule(
131131
),
132132
"with_ccsnoise": attr.bool(
133133
default = False,
134-
doc = "Wheter to generate ccsnoise.",
134+
doc = "Whether to generate ccsnoise.",
135135
),
136136
"standard_cell_name": attr.string(
137137
mandatory = True,
138138
doc = "The name of the standar cell variant ex. sky130_fd_sc_hd",
139139
),
140140
"with_leakage": attr.bool(
141141
default = False,
142-
doc = "Wheter to generate leakage",
142+
doc = "Whether to generate leakage",
143143
),
144144
"_liberty_tool": attr.label(
145145
default = Label("@com_google_skywater_pdk//:liberty"),

pdk/build_defs.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ CornerInfo = provider(
3333
fields = {
3434
"liberty": "A file that points to the liberty file for this corner",
3535
"with_ccsnoise": "boolean Indicates that this is a ccsnoise model.",
36-
"with_leakage": "boolean Indicates wheter leakage is included in model",
36+
"with_leakage": "boolean Indicates whether leakage is included in model",
3737
"corner_name": "Name of the process corner",
3838
},
3939
)

vivado/providers.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
"""Describe Vivado providers."""
22

33
VivadoSynthCheckpointInfo = provider(
4-
doc = "Contains infomation at output of synthesis.",
4+
doc = "Contains information at output of synthesis.",
55
fields = {
66
"checkpoint": "A vivado checkpoint.",
77
},
88
)
99

1010
VivadoPlacementCheckpointInfo = provider(
11-
doc = "Contains infomation at output of placement.",
11+
doc = "Contains information at output of placement.",
1212
fields = {
1313
"checkpoint": "A vivado checkpoint.",
1414
},
1515
)
1616

1717
VivadoRoutingCheckpointInfo = provider(
18-
doc = "Contains infomation at output of routing.",
18+
doc = "Contains information at output of routing.",
1919
fields = {
2020
"checkpoint": "A vivado checkpoint.",
2121
},

0 commit comments

Comments
 (0)