Skip to content

Commit

Permalink
Fix Typos (#364)
Browse files Browse the repository at this point in the history
* Fix typos
* Rename Android -> App
  • Loading branch information
tomkonidas authored Sep 7, 2024
1 parent e4f6e6a commit 0288e74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 0288e74

Please sign in to comment.