Skip to content

Commit 03dc201

Browse files
authored
Merge pull request #56 from wongjoel/patch-1
Fix typo in "Using the pipe syntax" examples
2 parents c12802c + 3736cf9 commit 03dc201

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,15 @@ save(f::FileIO.File{FileIO.format"CSV"}, data; delim=',', quotechar='"', escapec
127127
Both ``load`` and ``save`` also support the pipe syntax. For example, to load a CSV file into a ``DataFrame``, one can use the following code:
128128

129129
````julia
130-
using CSVFiles, DataFrame
130+
using CSVFiles, DataFrames
131131

132132
df = load("data.csv") |> DataFrame
133133
````
134134

135135
To save an iterable table, one can use the following form:
136136

137137
````julia
138-
using CSVFiles, DataFrame
138+
using CSVFiles, DataFrames
139139

140140
df = # Aquire a DataFrame somehow
141141

0 commit comments

Comments
 (0)