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

chore: fix some comments #4680

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 core/api/src/graphql/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ export class InvalidPhoneForOnboardingError extends CustomGraphQLError {
export class UnauthorizedIPMetadataCountryError extends CustomGraphQLError {
constructor(errData: CustomGraphQLErrorData) {
super({
message: "Country not not authorized for quizzes.",
message: "Country not authorized for quizzes.",
forwardToClient: true,
code: "UNAUTHORIZED_COUNTRY_IP_FOR_QUIZZES",
...errData,
Expand Down
2 changes: 1 addition & 1 deletion prelude/decls/erlang_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ rules_attributes = {
developers should be to reduce usages of this field._ **DO NOT ADD ANY MORE USAGES!!**
"""),
"extra_properties": attrs.option(attrs.dict(key = attrs.string(), value = attrs.one_of(attrs.string(), attrs.list(attrs.string()))), default = None, doc = """
The extra_properties field can be used to specify extra key-value pairs which is are not defined in
The extra_properties field can be used to specify extra key-value pairs which are not defined in
[application_opt()](https://www.erlang.org/doc/man/application.html#load-2). The key-value pair will be stored in the
applications `.app` file and can be accessed by `file:consult/1`.
"""),
Expand Down
2 changes: 1 addition & 1 deletion prelude/java/java_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ def java_library_impl(ctx: AnalysisContext) -> list[Provider]:
shared_library_info,
cxx_resource_info,
linkable_graph,
# Add an unused default output in case this target is used an an attr.source() anywhere.
# Add an unused default output in case this target is used an attr.source() anywhere.
DefaultInfo(default_output = ctx.actions.write("{}/unused.jar".format(ctx.label.name), [])),
TemplatePlaceholderInfo(keyed_variables = {
"classpath": "unused_but_needed_for_analysis",
Expand Down
2 changes: 1 addition & 1 deletion prelude/kotlin/kotlin_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def kotlin_library_impl(ctx: AnalysisContext) -> list[Provider]:
shared_library_info,
cxx_resource_info,
linkable_graph,
# Add an unused default output in case this target is used an an attr.source() anywhere.
# Add an unused default output in case this target is used an attr.source() anywhere.
DefaultInfo(default_output = ctx.actions.write("{}/unused.jar".format(ctx.label.name), [])),
TemplatePlaceholderInfo(keyed_variables = {
"classpath": "unused_but_needed_for_analysis",
Expand Down
Loading