docs: fix typos, grammar, and branding consistency across docs and source#8109
Open
Edge-Explorer wants to merge 1 commit intohuggingface:mainfrom
Open
docs: fix typos, grammar, and branding consistency across docs and source#8109Edge-Explorer wants to merge 1 commit intohuggingface:mainfrom
Edge-Explorer wants to merge 1 commit intohuggingface:mainfrom
Conversation
…urce This commit addresses several documentation quality issues found across the repository — fixing typos, grammar errors, brand name inconsistencies, and adding modern tooling references for new contributors. ## Changes ### README.md - Fix duplicate word: "frameworks frameworks" → "frameworks" - Standardize brand name: "HuggingFace Datasets Hub" → "Hugging Face Datasets Hub" - Add `uv` installation section for faster environment setup ### CONTRIBUTING.md - Add `uv pip install -e ".[dev]"` as an alternative setup command - Fix grammar: "To do, go" → "To do so, go" - Fix punctuation: trailing space before period in pre-commit note (`again .` → `again.`) - Standardize brand name: "HuggingFace [code of conduct]" → "Hugging Face [code of conduct]" ### docs/source/stream.mdx - Fix article usage: "a [`IterableDataset`]" → "an [`IterableDataset`]" (vowel sound rule) - Fix code comment: "shuffles the shards order and use" → "uses" (subject-verb agreement) - Fix phrase: "as soon one of the dataset runs out" → "as soon as one of the datasets runs out" - Fix pluralization: "every samples in every dataset" → "every sample in every dataset" - Fix abbreviation punctuation: "i.e the" → "i.e. the" ### docs/source/quickstart.mdx - Standardize brand name: "a HuggingFace [`~datasets.Dataset`]" → "a Hugging Face [`~datasets.Dataset`]" (3 occurrences) ### docs/README.md - Standardize copyright notice: "The HuggingFace Team" → "The Hugging Face Team" ### notebooks/README.md - Standardize copyright notice: "The HuggingFace Team" → "The Hugging Face Team" ### src/datasets/iterable_dataset.py - Fix typo in `map()` docstring: "simulatenous" → "simultaneous" - Fix typo in `filter()` docstring: "simulatenous" → "simultaneous" - Add return type hint to `identity_func`: `(x)` → `(x: Any) -> Any` - Add return type hint to `_rename_columns_fn`: missing `-> dict` return type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit addresses several documentation quality issues found across the repository — fixing typos, grammar errors, brand name inconsistencies, and adding modern tooling references for new contributors.
Changes
README.md
uvinstallation section for faster environment setupCONTRIBUTING.md
uv pip install -e ".[dev]"as an alternative setup commandagain .→again.)docs/source/stream.mdx
IterableDataset]" → "an [IterableDataset]" (vowel sound rule)docs/source/quickstart.mdx
~datasets.Dataset]" → "a Hugging Face [~datasets.Dataset]" (3 occurrences)docs/README.md
notebooks/README.md
src/datasets/iterable_dataset.py
map()docstring: "simulatenous" → "simultaneous"filter()docstring: "simulatenous" → "simultaneous"identity_func:(x)→(x: Any) -> Any_rename_columns_fn: missing-> dictreturn type