Skip to content

Commit

Permalink
Code sample in R not working for services in namespace #297
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jan 26, 2023
1 parent cbcb87d commit 76afd33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/export/r.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default class R extends Exporter {
let args = await this.generateArguments(node);
// ToDo: This doesn't seem to be supported in R yet
if (node.namespace) {
args.namespace = this.e(args.namespace);
args.namespace = this.e(node.namespace);
}
args = Utils.mapObject(args, (value, name) => `${name} = ${this.e(value)}`);

Expand Down

0 comments on commit 76afd33

Please sign in to comment.