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 #364

Merged
merged 2 commits into from
Sep 7, 2024
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 lib/plexus_web/controllers/api/v1/app_controller.ex
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ defmodule PlexusWeb.API.V1.AppController do
parameters: [
package: [
in: :path,
description: "Android Package",
description: "App Package",
type: :string,
required: true,
example: "com.google.android.youtube"
Expand Down
2 changes: 1 addition & 1 deletion lib/plexus_web/controllers/api/v1/schemas/app.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule PlexusWeb.API.V1.Schemas.App do
type: :object,
properties: %{
name: %Schema{type: :string, description: "Name"},
package: %Schema{type: :string, description: "Android Package"},
package: %Schema{type: :string, description: "App Package"},
icon_url: %Schema{type: :string, description: "URL of Icon"},
scores: Scores
},
Expand Down
2 changes: 1 addition & 1 deletion lib/plexus_web/controllers/api/v1/schemas/score.ex
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule PlexusWeb.API.V1.Schemas.Score do
type: :object,
properties: %{
rating_type: %Schema{type: :string, description: "Rating Type", enum: ["micro_g", "native"]},
numenator: %Schema{type: :number, description: "Numenator"},
numerator: %Schema{type: :number, description: "Numerator"},
denominator: %Schema{type: :integer, description: "Denominator"},
total_count: %Schema{type: :string, description: "Total count of ratings"}
},
Expand Down
Loading