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

correct typos #106

Merged
merged 1 commit into from
May 9, 2023
Merged
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
2 changes: 1 addition & 1 deletion fondant/component_spec.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module defines classes to represent an Fondant component specification."""
"""This module defines classes to represent a Fondant component specification."""
import copy
import json
import pkgutil
Expand Down
6 changes: 3 additions & 3 deletions fondant/manifest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module defines classes to represent an Fondant manifest."""
"""This module defines classes to represent a Fondant manifest."""
import copy
import json
import pkgutil
Expand All @@ -17,7 +17,7 @@

class Subset:
"""
Class representing an Fondant subset.
Class representing a Fondant subset.

Args:
specification: The part of the manifest json representing the subset
Expand Down Expand Up @@ -69,7 +69,7 @@ def fields(self) -> t.Dict[str, Field]:

class Manifest:
"""
Class representing an Fondant manifest.
Class representing a Fondant manifest.

Args:
specification: The manifest specification as a Python dict
Expand Down
2 changes: 1 addition & 1 deletion fondant/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Type(enum.Enum):


class Field(t.NamedTuple):
"""Class representing a single field or column in an Fondant subset."""
"""Class representing a single field or column in a Fondant subset."""

name: str
type: Type