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 typos #164

Merged
merged 1 commit into from
Oct 15, 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
4 changes: 2 additions & 2 deletions src/Columns/Column.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function isSearchable(): bool
}

/**
* * Conver the column to a table head.
* * Convert the column to a table head.
*/
public function toHead(Request $request): array
{
Expand All @@ -152,7 +152,7 @@ public function toHead(Request $request): array
}

/**
* Conver the column to a cell.
* Convert the column to a cell.
*/
public function toCell(Request $request, Model $model): array
{
Expand Down
2 changes: 1 addition & 1 deletion src/Fields/Relation.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ protected function buildApiUri(Model $model): ?string
}

/**
* Get the option represenation of the model and the related model.
* Get the option representation of the model and the related model.
*/
public function toOption(Request $request, Model $model, Model $related): array
{
Expand Down
2 changes: 1 addition & 1 deletion src/Fields/Repeater.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function buildOption(Request $request, Model $model): array
}

/**
* Get the option represenation of the model and the temporary model.
* Get the option representation of the model and the temporary model.
*/
public function toOption(Request $request, Model $model, Model $tmpModel): array
{
Expand Down
Loading