Skip to content

Commit

Permalink
Update getting-started.md (jbesomi#88)
Browse files Browse the repository at this point in the history
Fixing the custom pipeline example (custom pipeline missing from the `clean` parameters)
  • Loading branch information
sleeper authored Jul 15, 2020
1 parent e439e80 commit d085ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ from texthero import preprocessing
custom_pipeline = [preprocessing.fillna,
preprocessing.lowercase,
preprocessing.remove_whitespace]
df['clean_text'] = hero.clean(df['text'])
df['clean_text'] = hero.clean(df['text'], custom_pipeline)
```

or alternatively
Expand Down

0 comments on commit d085ed7

Please sign in to comment.