From 1e19ff65e6768100b63ff01df2ae75c2f6eb8801 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Wed, 12 Dec 2018 11:04:36 -0500 Subject: [PATCH] fix bad comma usage --- R/graph.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/graph.R b/R/graph.R index e195f3d4c..55105fad7 100644 --- a/R/graph.R +++ b/R/graph.R @@ -136,11 +136,11 @@ RLog <- R6Class( paste0("ctx", ctxId) }, namesIdStr = function(reactId) { - paste0("names(", reactId, ")"), + paste0("names(", reactId, ")") }, asListIdStr = function(reactId) { paste0("as.list(", reactId, ")") - } + }, asListAllIdStr = function(reactId) { paste0("as.list(", reactId, ", all.names = TRUE)") },