Skip to content

Commit

Permalink
typified -> typed
Browse files Browse the repository at this point in the history
This commit was sponsored by Matt Campbell, and my other patrons.  If
you want to join them, you can support my work at
https://glyph.im/patrons/.
  • Loading branch information
glyph committed Aug 16, 2024
1 parent 35fedb4 commit 068bddb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion automat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
State-machines.
"""
from ._typified import TypeMachineBuilder, pep614, AlreadyBuiltError, TypeMachine
from ._typed import TypeMachineBuilder, pep614, AlreadyBuiltError, TypeMachine
from ._core import NoTransition
from ._methodical import MethodicalMachine

Expand Down
2 changes: 1 addition & 1 deletion automat/_discover.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from automat import MethodicalMachine

from ._typified import TypeMachine, InputProtocol, Core
from ._typed import TypeMachine, InputProtocol, Core


def isOriginalLocation(attr: PythonAttribute | PythonModule) -> bool:
Expand Down
2 changes: 1 addition & 1 deletion automat/_test/test_visualize.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from automat import TypeMachineBuilder, pep614

from .._methodical import MethodicalMachine
from .._typified import TypeMachine
from .._typed import TypeMachine
from .test_discover import isTwistedInstalled


Expand Down
4 changes: 2 additions & 2 deletions automat/_typified.py → automat/_typed.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,8 +633,8 @@ class TypeMachineBuilder(Generic[InputProtocol, Core]):
instances of C{InputProtocol} that take an instance of C{Core}.
Describe the machine with L{TypeMachineBuilder.state} L{.upon
<automat._typified.TypedState.upon>} L{.to
<automat._typified.UponFromNo.to>}, then build it with
<automat._typed.TypedState.upon>} L{.to
<automat._typed.UponFromNo.to>}, then build it with
L{TypeMachineBuilder.build}, like so::
from typing import Protocol
Expand Down
2 changes: 1 addition & 1 deletion automat/_visualize.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ._core import Automaton, Input, Output, State
from ._discover import findMachines
from ._methodical import MethodicalMachine
from ._typified import TypeMachine, InputProtocol, Core
from ._typed import TypeMachine, InputProtocol, Core


def _gvquote(s: str) -> str:
Expand Down

0 comments on commit 068bddb

Please sign in to comment.