Skip to content

Commit

Permalink
chore: fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
rYuuk committed Nov 29, 2023
1 parent ed7cfe1 commit 1aa86a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Runtime/CommonHeaders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static class CommonHeaders
private const string EDITMODE = "editmode";
private const string SEPARATOR = "-";

public static KeyValuePair<string, string> GeApplicationJsonHeader()
public static KeyValuePair<string, string> GetApplicationJsonHeader()
{
return new KeyValuePair<string, string>("Content-Type", "application/json");
}
Expand All @@ -27,7 +27,7 @@ public static KeyValuePair<string, string> GetAppIdHeader()
public static IDictionary<string, string> GetHeadersWithAppId()
{
IDictionary<string,string> dictionary = new Dictionary<string, string>();
dictionary.Add(GeApplicationJsonHeader());
dictionary.Add(GetApplicationJsonHeader());
dictionary.Add(GetAppIdHeader());
return dictionary;
}
Expand Down

0 comments on commit 1aa86a1

Please sign in to comment.