Skip to content

Commit

Permalink
Fix ReST markup.
Browse files Browse the repository at this point in the history
  • Loading branch information
doerwalter committed Jan 14, 2022
1 parent 2b1552e commit feeb24b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/ll/ul4c.py
Original file line number Diff line number Diff line change
Expand Up @@ -1944,7 +1944,7 @@ def ul4onload(self, decoder):
class KeywordArgumentAST(CodeAST):
"""
AST node for a keyword argument in a :class:`CallAST` (e.g. the ``x=y``
in the function call``f(x=y)``).
in the function call ``f(x=y)``).
Attributes are:
Expand Down Expand Up @@ -2756,10 +2756,10 @@ class IfBlockAST(BlockAST):
Attributes are:
``condition`` : class:`AST`
``condition`` : :class:`AST`
The condition in the ``<?if?>`` block.
``content`` : :class:`list` of `:class:`AST` objects
``content`` : :class:`list` of :class:`AST` objects
The content of the ``<?if?>`` block.
"""

Expand Down Expand Up @@ -2808,10 +2808,10 @@ class ElIfBlockAST(BlockAST):
Attributes are:
``condition`` : class:`AST`
``condition`` : :class:`AST`
The condition in the ``<?elif?>`` block.
``content`` : :class:`list` of `:class:`AST` objects
``content`` : :class:`list` of :class:`AST` objects
The content of the ``<?elif?>`` block.
"""

Expand Down Expand Up @@ -2860,7 +2860,7 @@ class ElseBlockAST(BlockAST):
Attributes are:
``content`` : :class:`list` of `:class:`AST` objects
``content`` : :class:`list` of :class:`AST` objects
The content of the ``<?else?>`` block.
"""

Expand Down

0 comments on commit feeb24b

Please sign in to comment.