JuliaML / TableTransforms.jl

Transforms and pipelines with tabular data in Julia
https://juliaml.github.io/TableTransforms.jl/stable
MIT License
103 stars 15 forks source link

fix typos #172

Closed spaette closed 1 year ago

spaette commented 1 year ago

docs/src/assets/dark.scss docs/src/assets/light.scss docs/src/transforms.md src/transforms/coalesce.jl src/transforms/select.jl test/transforms/levels.jl test/transforms/replace.jl

same docs style with typos as fixed in GeoStats #272, #274, and in Meshes #468

juliohm commented 1 year ago

Tests are failing for unrelated reasons. Merging it. Thanks!

spaette commented 1 year ago

the sole code change being the below

src/transforms/coalesce.jl

- colapply(tramsform::Coalesce, x, c) = coalesce.(x, tramsform.value)
+ colapply(transform::Coalesce, x, c) = coalesce.(x, transform.value)