Skip to content

Commit c757ffd

Browse files
Merge pull request datashield#361 from StuartWheater/v6.1.1-dev
Change '=' to '<-'
2 parents 27da4ce + c1da10b commit c757ffd

18 files changed

Lines changed: 19 additions & 19 deletions

R/ds.asCharacter.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
#' }
5555
#' @author DataSHIELD Development Team
5656
#' @export
57-
ds.asCharacter = function(x.name=NULL, newobj=NULL, datasources=NULL){
57+
ds.asCharacter <- function(x.name=NULL, newobj=NULL, datasources=NULL){
5858

5959
# look for DS connections
6060
if(is.null(datasources)){

R/ds.asDataMatrix.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
#' }
5656
#' @author DataSHIELD Development Team
5757
#' @export
58-
ds.asDataMatrix = function(x.name=NULL, newobj=NULL, datasources=NULL){
58+
ds.asDataMatrix <- function(x.name=NULL, newobj=NULL, datasources=NULL){
5959

6060
# look for DS connections
6161
if(is.null(datasources)){

R/ds.asList.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
#' }
5656
#' @author DataSHIELD Development Team
5757
#' @export
58-
ds.asList = function(x.name=NULL, newobj=NULL, datasources=NULL){
58+
ds.asList <- function(x.name=NULL, newobj=NULL, datasources=NULL){
5959

6060
# look for DS connections
6161
if(is.null(datasources)){

R/ds.asLogical.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
#' }
5656
#' @author DataSHIELD Development Team
5757
#' @export
58-
ds.asLogical = function(x.name=NULL, newobj=NULL, datasources=NULL){
58+
ds.asLogical <- function(x.name=NULL, newobj=NULL, datasources=NULL){
5959

6060
# look for DS connections
6161
if(is.null(datasources)){

R/ds.asNumeric.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
#' }
7070
#' @author DataSHIELD Development Team
7171
#' @export
72-
ds.asNumeric = function(x.name=NULL, newobj=NULL, datasources=NULL){
72+
ds.asNumeric <- function(x.name=NULL, newobj=NULL, datasources=NULL){
7373

7474
# look for DS connections
7575
if(is.null(datasources)){

R/ds.corTest.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
#' }
5252
#'
5353
#'
54-
ds.corTest = function(x=NULL, y=NULL, datasources=NULL){
54+
ds.corTest <- function(x=NULL, y=NULL, datasources=NULL){
5555

5656
# look for DS connections
5757
if(is.null(datasources)){

R/ds.exp.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
#'
5656
#' }
5757
#'
58-
ds.exp = function(x=NULL, newobj=NULL, datasources=NULL){
58+
ds.exp <- function(x=NULL, newobj=NULL, datasources=NULL){
5959

6060
# look for DS connections
6161
if(is.null(datasources)){

R/ds.isValid.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#'
5858
#' }
5959
#'
60-
ds.isValid = function(x=NULL, datasources=NULL){
60+
ds.isValid <- function(x=NULL, datasources=NULL){
6161

6262
# look for DS connections
6363
if(is.null(datasources)){

R/ds.length.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
#' datashield.logout(connections)
7575
#' }
7676
#'
77-
ds.length = function(x=NULL, type='both', checks='FALSE', datasources=NULL){
77+
ds.length <- function(x=NULL, type='both', checks='FALSE', datasources=NULL){
7878

7979
##################################################################################################################
8080
#MODULE 1: IDENTIFY DEFAULT CONNECTIONS #

R/ds.levels.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
#'
5757
#' }
5858
#'
59-
ds.levels = function(x=NULL, datasources=NULL) {
59+
ds.levels <- function(x=NULL, datasources=NULL) {
6060

6161
# look for DS connections
6262
if(is.null(datasources)){

0 commit comments

Comments
 (0)