Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More typo fixes. #234

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading