Skip to content

Commit 954cbfd

Browse files
committed
fix typos per issue #558
1 parent 5326c03 commit 954cbfd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

saspy/sasbase.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1423,7 +1423,7 @@ def df2sd(self, df: 'pandas.DataFrame', table: str = '_df', libref: str = '',
14231423
As of version 3.5.0, keep_outer_quotes is deprecated and embedded_newlines defaults to True
14241424
14251425
:param keep_outer_quotes: the defualt is for SAS to strip outer quotes from delimitted data. This lets you keep them
1426-
:param embedded_newlines: if any char columns have embedded CR or LF, set this to True to get them iported into the SAS data set
1426+
:param embedded_newlines: if any char columns have embedded CR or LF, set this to True to get them imported into the SAS data set
14271427
14281428
colrep is new as of version 3.5.0
14291429
@@ -1504,7 +1504,7 @@ def dataframe2sasdata(self, df: 'pandas.DataFrame', table: str = '_df', libref:
15041504
As of version 3.5.0, keep_outer_quotes is deprecated and embedded_newlines defaults to True
15051505
15061506
:param keep_outer_quotes: the defualt is for SAS to strip outer quotes from delimitted data. This lets you keep them
1507-
:param embedded_newlines: if any char columns have embedded CR or LF, set this to True to get them iported into the SAS data set
1507+
:param embedded_newlines: if any char columns have embedded CR or LF, set this to True to get them imported into the SAS data set
15081508
15091509
colrep is new as of version 3.5.0
15101510

saspy/sasiocom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ def dataframe2sasdata(self, df: '<Pandas Data Frame object>', table: str ='a',
618618
619619
None of these options are used by this access method; they are needed for other access methods
620620
keep_outer_quotes - for character columns, have SAS keep any outer quotes instead of stripping them off.
621-
embedded_newlines - if any char columns have embedded CR or LF, set this to True to get them iported into the SAS data set
621+
embedded_newlines - if any char columns have embedded CR or LF, set this to True to get them imported into the SAS data set
622622
LF - if embedded_newlines=True, the chacter to use for LF when transferring the data; defaults to '\x01'
623623
CR - if embedded_newlines=True, the chacter to use for CR when transferring the data; defaults to '\x02'
624624
colsep - the column seperator character used for streaming the delimmited data to SAS defaults to '\x03'

saspy/sasiohttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1456,7 +1456,7 @@ def dataframe2sasdata(self, df: '<Pandas Data Frame object>', table: str ='a',
14561456
table - the name of the SAS Data Set to create
14571457
libref - the libref for the SAS Data Set being created. Defaults to WORK, or USER if assigned
14581458
keep_outer_quotes - for character columns, have SAS keep any outer quotes instead of stripping them off.
1459-
embedded_newlines - if any char columns have embedded CR or LF, set this to True to get them iported into the SAS data set
1459+
embedded_newlines - if any char columns have embedded CR or LF, set this to True to get them imported into the SAS data set
14601460
LF - if embedded_newlines=True, the chacter to use for LF when transferring the data; defaults to '\x01'
14611461
CR - if embedded_newlines=True, the chacter to use for CR when transferring the data; defaults to '\x02'
14621462
colsep - the column seperator character used for streaming the delimmited data to SAS defaults to '\x03'

saspy/sasioiom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1464,7 +1464,7 @@ def dataframe2sasdata(self, df: '<Pandas Data Frame object>', table: str ='a',
14641464
table - the name of the SAS Data Set to create
14651465
libref - the libref for the SAS Data Set being created. Defaults to WORK, or USER if assigned
14661466
keep_outer_quotes - for character columns, have SAS keep any outer quotes instead of stripping them off.
1467-
embedded_newlines - if any char columns have embedded CR or LF, set this to True to get them iported into the SAS data set
1467+
embedded_newlines - if any char columns have embedded CR or LF, set this to True to get them imported into the SAS data set
14681468
LF - if embedded_newlines=True, the chacter to use for LF when transferring the data; defaults to '\x01'
14691469
CR - if embedded_newlines=True, the chacter to use for CR when transferring the data; defaults to '\x02'
14701470
colsep - the column seperator character used for streaming the delimmited data to SAS defaults to '\x03'

saspy/sasiostdio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1703,7 +1703,7 @@ def dataframe2sasdata(self, df: '<Pandas Data Frame object>', table: str ='a',
17031703
table - the name of the SAS Data Set to create
17041704
libref - the libref for the SAS Data Set being created. Defaults to WORK, or USER if assigned
17051705
keep_outer_quotes - for character columns, have SAS keep any outer quotes instead of stripping them off.
1706-
embedded_newlines - if any char columns have embedded CR or LF, set this to True to get them iported into the SAS data set
1706+
embedded_newlines - if any char columns have embedded CR or LF, set this to True to get them imported into the SAS data set
17071707
LF - if embedded_newlines=True, the chacter to use for LF when transferring the data; defaults to '\x01'
17081708
CR - if embedded_newlines=True, the chacter to use for CR when transferring the data; defaults to '\x02'
17091709
colsep - the column seperator character used for streaming the delimmited data to SAS defaults to '\x03'

0 commit comments

Comments
 (0)