Skip to content

Commit 6264334

Browse files
authored
Update README.md
1 parent 4912647 commit 6264334

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,9 @@ val pc = ReadLas("/path/to/las") ~ FilterCrop() ~ WriteLas("/path/to/new/las")
204204
val pcWithRawExpr = ReadLas("/path/to/las") ~ RawExpr(Map("type" -> "filters.crop").asJson) ~ WriteLas("/path/to/new/las")
205205

206206
// Create Pipelines from the constructed expressions
207-
val pipelinePc = pc.toPipeline
208-
val pipelinePc = pcWithRawExpr.toPipline
207+
val pipeline = pc.toPipeline
208+
209+
val pipelineRaw = pcWithRawExpr.toPipline
209210
```
210211

211212
## Build

0 commit comments

Comments
 (0)