Merge pull request #272 from saturday06/fix/typo_private_fields

Fix typo (private fields)
This commit is contained in:
hiroj
2019-06-25 19:39:13 +09:00
committed by GitHub
8 changed files with 40 additions and 40 deletions

View File

@@ -55,7 +55,7 @@ namespace UniJSON
get; set;
}
Dictionary<string, string[]> m_depndencies;
Dictionary<string, string[]> m_dependencies;
/// <summary>
/// http://json-schema.org/latest/json-schema-validation.html#rfc.section.6.5.7
/// </summary>
@@ -63,11 +63,11 @@ namespace UniJSON
{
get
{
if (m_depndencies == null)
if (m_dependencies == null)
{
m_depndencies = new Dictionary<string, string[]>();
m_dependencies = new Dictionary<string, string[]>();
}
return m_depndencies;
return m_dependencies;
}
}

View File

@@ -68,7 +68,7 @@ namespace UniJSON
get; set;
}
Dictionary<string, string[]> m_depndencies;
Dictionary<string, string[]> m_dependencies;
/// <summary>
/// http://json-schema.org/latest/json-schema-validation.html#rfc.section.6.5.7
/// </summary>
@@ -76,11 +76,11 @@ namespace UniJSON
{
get
{
if (m_depndencies == null)
if (m_dependencies == null)
{
m_depndencies = new Dictionary<string, string[]>();
m_dependencies = new Dictionary<string, string[]>();
}
return m_depndencies;
return m_dependencies;
}
}