Skip to content

Commit 0288e74

Browse files
authored
Fix Typos (#364)
* Fix typos * Rename Android -> App
1 parent e4f6e6a commit 0288e74

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/plexus_web/controllers/api/v1/app_controller.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ defmodule PlexusWeb.API.V1.AppController do
5252
parameters: [
5353
package: [
5454
in: :path,
55-
description: "Android Package",
55+
description: "App Package",
5656
type: :string,
5757
required: true,
5858
example: "com.google.android.youtube"

lib/plexus_web/controllers/api/v1/schemas/app.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule PlexusWeb.API.V1.Schemas.App do
99
type: :object,
1010
properties: %{
1111
name: %Schema{type: :string, description: "Name"},
12-
package: %Schema{type: :string, description: "Android Package"},
12+
package: %Schema{type: :string, description: "App Package"},
1313
icon_url: %Schema{type: :string, description: "URL of Icon"},
1414
scores: Scores
1515
},

lib/plexus_web/controllers/api/v1/schemas/score.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ defmodule PlexusWeb.API.V1.Schemas.Score do
88
type: :object,
99
properties: %{
1010
rating_type: %Schema{type: :string, description: "Rating Type", enum: ["micro_g", "native"]},
11-
numenator: %Schema{type: :number, description: "Numenator"},
11+
numerator: %Schema{type: :number, description: "Numerator"},
1212
denominator: %Schema{type: :integer, description: "Denominator"},
1313
total_count: %Schema{type: :string, description: "Total count of ratings"}
1414
},

0 commit comments

Comments
 (0)