From 7729c0d8e9b431af5da6fcde335b2566afcc77fc Mon Sep 17 00:00:00 2001 From: Tom Konidas Date: Sat, 7 Sep 2024 11:55:17 -0400 Subject: [PATCH] Fix typos --- lib/plexus_web/controllers/api/v1/schemas/score.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plexus_web/controllers/api/v1/schemas/score.ex b/lib/plexus_web/controllers/api/v1/schemas/score.ex index e9211f0a..5c9456b5 100644 --- a/lib/plexus_web/controllers/api/v1/schemas/score.ex +++ b/lib/plexus_web/controllers/api/v1/schemas/score.ex @@ -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"} },