Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix documentation typos #1736

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/general.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
- name: Install Pythonha
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems to be unintended, or is it ?

uses: actions/setup-python@v5
with:
python-version: "3.10"
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
run: |
echo '!**/*.html' >> .gitignore
hatch run docs-build
- name: Publush to Github Pages
- name: Publish to Github Pages
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: site
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/transforming-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ cat transform.csv

The high-level interface to transform data is a set of `transform` functions:
- `transform`: detects the source type and transforms data accordingly
- `reosurce.transform`: transforms a resource
- `resource.transform`: transforms a resource
- `package.transform`: transforms a package

We'll see examples of these functions in the next few sections.
Expand Down Expand Up @@ -157,7 +157,7 @@ Frictionless includes more than 40+ built-in transform steps. They are grouped b
- row
- cell

See [Transform Steps](../steps/cell.md) for a list of all available steps. It is also possible to write custom transform steps: see the next section.
See [Transform Steps](../steps/cell.html) for a list of all available steps. It is also possible to write custom transform steps: see the next section.

## Custom Steps

Expand Down