Skip to content

Commit 774e3c5

Browse files
committed
update docstrings for AST markers
1 parent c178d65 commit 774e3c5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

unpythonic/syntax/letdo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,11 +317,11 @@ def _dletseqimpl(bindings, body, kind):
317317
# detecting macro invocations. Our `do[]` macro then only needs to detect
318318
# instances of the appropriate markers.
319319
class UnpythonicLetDoMarker(ASTMarker):
320-
"""AST marker related to the let/do subsystem."""
320+
"""AST marker related to unpythonic's let/do subsystem."""
321321
class UnpythonicDoLocalMarker(UnpythonicLetDoMarker):
322-
"""Marker for local variable definitions in a `do` context."""
322+
"""AST marker for local variable definitions in a `do` context."""
323323
class UnpythonicDoDeleteMarker(UnpythonicLetDoMarker):
324-
"""Marker for local variable deletion in a `do` context."""
324+
"""AST marker for local variable deletion in a `do` context."""
325325

326326
# TODO: fail-fast: promote `local[]`/`delete[]` usage errors to compile-time errors
327327
# TODO: (doesn't currently work e.g. for `let` with an implicit do (extra bracket notation))

0 commit comments

Comments
 (0)