Skip to content

Commit

Permalink
docs: fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ss2165 committed Jul 1, 2024
1 parent 9a26771 commit 65c9f83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hugr-py/src/hugr/function.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Builder clases for defining functions and modules in HUGR."""
"""Builder classes for defining functions and modules in HUGR."""

from __future__ import annotations

Expand Down
6 changes: 3 additions & 3 deletions hugr-py/src/hugr/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class Command:
"""A :class:`DataflowOp` and its incoming :class:`Wire <hugr.nodeport.Wire>`
arguments.
Ephermeral, used to wire in operations to a dataflow graph.
Ephemeral, used to wire in operations to a dataflow graph.
Example:
>>> Noop()(Node(0).out(0))
Expand Down Expand Up @@ -869,7 +869,7 @@ class Call(_CallOrLoad, Op):
Args:
signature: Polymorphic function signature.
instantiation: Concrete function signature. Defaults to None.
type_args: type arguments for polymorphic funciton. Defaults to None.
type_args: type arguments for polymorphic function. Defaults to None.
Raises:
NoConcreteFunc: If the signature is polymorphic and no instantiation
Expand Down Expand Up @@ -949,7 +949,7 @@ class LoadFunc(_CallOrLoad, DataflowOp):
Args:
signature: Polymorphic function signature.
instantiation: Concrete function signature. Defaults to None.
type_args: type arguments for polymorphic funciton. Defaults to None.
type_args: type arguments for polymorphic function. Defaults to None.
Raises:
NoConcreteFunc: If the signature is polymorphic and no instantiation
Expand Down

0 comments on commit 65c9f83

Please sign in to comment.