Skip to content

Commit

Permalink
Fix apparent typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
salticus authored and benmccann committed Jan 24, 2020
1 parent a00d71a commit 6fc6a4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs-src/dist/userguide/importing_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This method supplies defaults for everything but the filename. We assume that co
You can create an options object with a builder:

```Java
CsvReadOptionsBuilder builder =
CsvReadOptions.Builder builder =
CsvReadOptions.builder("myFile.csv")
.separator('\t') // table is tab-delimited
.header(false) // no header
Expand Down
2 changes: 1 addition & 1 deletion docs-src/main/userguide/importing_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This method supplies defaults for everything but the filename. We assume that co
You can create an options object with a builder:

```Java
CsvReadOptionsBuilder builder =
CsvReadOptions.Builder builder =
CsvReadOptions.builder("myFile.csv")
.separator('\t') // table is tab-delimited
.header(false) // no header
Expand Down
2 changes: 1 addition & 1 deletion docs/userguide/importing_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This method supplies defaults for everything but the filename. We assume that co
You can create an options object with a builder:

```Java
CsvReadOptionsBuilder builder =
CsvReadOptions.Builder builder =
CsvReadOptions.builder("myFile.csv")
.separator('\t') // table is tab-delimited
.header(false) // no header
Expand Down

0 comments on commit 6fc6a4d

Please sign in to comment.