Skip to content

Commit

Permalink
Merge pull request #234 from mithro/more-typos
Browse files Browse the repository at this point in the history
More typo fixes.
  • Loading branch information
mithro authored Nov 20, 2023
2 parents 6f419de + b4828cc commit c2e266b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dependency_support/com_google_skywater_pdk/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,15 @@ skywater_corner = rule(
),
"with_ccsnoise": attr.bool(
default = False,
doc = "Wheter to generate ccsnoise.",
doc = "Whether to generate ccsnoise.",
),
"standard_cell_name": attr.string(
mandatory = True,
doc = "The name of the standar cell variant ex. sky130_fd_sc_hd",
),
"with_leakage": attr.bool(
default = False,
doc = "Wheter to generate leakage",
doc = "Whether to generate leakage",
),
"_liberty_tool": attr.label(
default = Label("@com_google_skywater_pdk//:liberty"),
Expand Down
2 changes: 1 addition & 1 deletion pdk/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CornerInfo = provider(
fields = {
"liberty": "A file that points to the liberty file for this corner",
"with_ccsnoise": "boolean Indicates that this is a ccsnoise model.",
"with_leakage": "boolean Indicates wheter leakage is included in model",
"with_leakage": "boolean Indicates whether leakage is included in model",
"corner_name": "Name of the process corner",
},
)
6 changes: 3 additions & 3 deletions vivado/providers.bzl
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
"""Describe Vivado providers."""

VivadoSynthCheckpointInfo = provider(
doc = "Contains infomation at output of synthesis.",
doc = "Contains information at output of synthesis.",
fields = {
"checkpoint": "A vivado checkpoint.",
},
)

VivadoPlacementCheckpointInfo = provider(
doc = "Contains infomation at output of placement.",
doc = "Contains information at output of placement.",
fields = {
"checkpoint": "A vivado checkpoint.",
},
)

VivadoRoutingCheckpointInfo = provider(
doc = "Contains infomation at output of routing.",
doc = "Contains information at output of routing.",
fields = {
"checkpoint": "A vivado checkpoint.",
},
Expand Down

0 comments on commit c2e266b

Please sign in to comment.