Skip to content

Commit f5a9ffd

Browse files
committed
Remove all mentionings of Julia.
1 parent 91845ce commit f5a9ffd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pytask_r/collect.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def pytask_collect_task(
7070

7171
obj.pytask_meta.markers.append(mark)
7272

73-
# Collect the nodes in @pytask.mark.julia and validate them.
73+
# Collect the nodes in @pytask.mark.r and validate them.
7474
path_nodes = Path.cwd() if path is None else path.parent
7575

7676
if isinstance(script, str):
@@ -96,7 +96,7 @@ def pytask_collect_task(
9696
if not (isinstance(script_node, PathNode) and script_node.path.suffix == ".r"):
9797
msg = (
9898
"The 'script' keyword of the @pytask.mark.r decorator must point "
99-
f"to Julia file with the .r suffix, but it is {script_node}."
99+
f"to an R file with the .r extension, but it is {script_node}."
100100
)
101101
raise ValueError(msg)
102102

@@ -169,7 +169,7 @@ def _parse_r_mark(
169169
default_serializer: str,
170170
default_suffix: str,
171171
) -> Mark:
172-
"""Parse a Julia mark."""
172+
"""Parse an R mark."""
173173
script, options, serializer, suffix = r(**mark.kwargs)
174174

175175
parsed_kwargs = {}

0 commit comments

Comments
 (0)