Skip to content

Commit

Permalink
chore: Fix some broken links / formatting (#10772)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego authored Aug 29, 2023
1 parent 18847fb commit 7772dbd
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,3 @@ jobs:
- name: Check wasm
working-directory: crates
run: make check-wasm

2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ For contributing to the user guide, please refer to the [contributing guide](htt

### API reference

Polars has separate API references for [Rust](https://pola-rs.github.io/polars/polars/index.html) and [Python](https://pola-rs.github.io/polars/py-polars/html/reference/index.html).
Polars has separate API references for [Rust](https://pola-rs.github.io/polars/docs/rust/dev/polars/) and [Python](https://pola-rs.github.io/polars/docs/python/dev/reference/index.html).
These are generated directly from the codebase, so in order to contribute, you will have to follow the steps outlined in [this section](#contributing-to-the-codebase) above.

#### Rust
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Required Rust version `>=1.65`.

## Contributing

Want to contribute? Read our [contribution guideline](./CONTRIBUTING.md).
Want to contribute? Read our [contribution guideline](/CONTRIBUTING.md).

## Python: compile polars from source

Expand Down
1 change: 0 additions & 1 deletion crates/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,3 @@ check-wasm: ## Check wasm build without supported features
--exclude-features performant \
--exclude-features streaming \
--exclude-features test

1 change: 0 additions & 1 deletion py-polars/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ Index
:maxdepth: 2

reference/index

2 changes: 1 addition & 1 deletion py-polars/docs/source/reference/lazyframe/attributes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ Attributes
LazyFrame.columns
LazyFrame.dtypes
LazyFrame.schema
LazyFrame.width
LazyFrame.width
File renamed without changes.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/io/files/small.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ a,b,c
1,i,16200126
2,j,16250130
3,k,17220012
4,l,17290009
4,l,17290009
2 changes: 1 addition & 1 deletion py-polars/tests/unit/io/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def test_compressed_csv(io_files_path: Path) -> None:
assert_frame_equal(out, expected)

# now from disk
csv_file = io_files_path / "gzipped.csv"
csv_file = io_files_path / "gzipped.csv.gz"
out = pl.read_csv(str(csv_file), truncate_ragged_lines=True)
assert_frame_equal(out, expected)

Expand Down

0 comments on commit 7772dbd

Please sign in to comment.