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 some typos #579

Merged
merged 1 commit into from
Mar 10, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def pgv_dependencies(maven_repos = _DEFAULT_REPOSITORIES):
strip_prefix = "protobuf-3.15.3",
)

# TODO(akonradi): This shouldn't be necesary since the same http_archive block is imported by
# TODO(akonradi): This shouldn't be necessary since the same http_archive block is imported by
# protobuf_deps from @com_google_protobuf. Investigate why.
if not native.existing_rule("zlib"):
http_archive(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
@FunctionalInterface
public interface ValidatorIndex {
/**
* Retuns the validator for {@code clazz}, or {@code ALWAYS_VALID} if not found.
* Returns the validator for {@code clazz}, or {@code ALWAYS_VALID} if not found.
*/
<T> Validator<T> validatorFor(Class clazz);

/**
* Retuns the validator for {@code <T>}, or {@code ALWAYS_VALID} if not found.
* Returns the validator for {@code <T>}, or {@code ALWAYS_VALID} if not found.
*/
@SuppressWarnings("unchecked")
default <T> Validator<T> validatorFor(Object instance) {
Expand Down