Skip to content

Commit

Permalink
correct typos (#106)
Browse files Browse the repository at this point in the history
Small PR to correct some typos
  • Loading branch information
PhilippeMoussalli authored May 9, 2023
1 parent b59c045 commit 7736764
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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

0 comments on commit 7736764

Please sign in to comment.