File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ def pytask_collect_task(
70
70
71
71
obj .pytask_meta .markers .append (mark )
72
72
73
- # Collect the nodes in @pytask.mark.julia and validate them.
73
+ # Collect the nodes in @pytask.mark.r and validate them.
74
74
path_nodes = Path .cwd () if path is None else path .parent
75
75
76
76
if isinstance (script , str ):
@@ -96,7 +96,7 @@ def pytask_collect_task(
96
96
if not (isinstance (script_node , PathNode ) and script_node .path .suffix == ".r" ):
97
97
msg = (
98
98
"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 } ."
100
100
)
101
101
raise ValueError (msg )
102
102
@@ -169,7 +169,7 @@ def _parse_r_mark(
169
169
default_serializer : str ,
170
170
default_suffix : str ,
171
171
) -> Mark :
172
- """Parse a Julia mark."""
172
+ """Parse an R mark."""
173
173
script , options , serializer , suffix = r (** mark .kwargs )
174
174
175
175
parsed_kwargs = {}
You can’t perform that action at this time.
0 commit comments