mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 08:58:00 +02:00
Fixed spelling mistake
This commit is contained in:
parent
ca668bf0fe
commit
7ad6df2c6e
17 changed files with 26 additions and 26 deletions
|
@ -19,7 +19,7 @@ namespace System.Diagnostics
|
|||
internal String mDirectory = new String() ~ delete _;
|
||||
internal String mVerb = new String("Open") ~ delete _;
|
||||
|
||||
public Dictionary<String, String> mEnvironmentVariables ~ DeleteDictionyAndKeysAndItems!(_);
|
||||
public Dictionary<String, String> mEnvironmentVariables ~ DeleteDictionaryAndKeysAndItems!(_);
|
||||
|
||||
public bool UseShellExecute { get { return mUseShellExecute; } set { mUseShellExecute = value; } };
|
||||
public bool RedirectStandardInput { get { return mRedirectStandardInput; } set { mRedirectStandardInput = value; } };
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace System
|
|||
{
|
||||
class PropertyBag
|
||||
{
|
||||
public Dictionary<String, Object> mProperties ~ DeleteDictionyAndKeysAndItems!(_);
|
||||
public Dictionary<String, Object> mProperties ~ DeleteDictionaryAndKeysAndItems!(_);
|
||||
|
||||
public void Add<T>(String key, T value) where T : struct
|
||||
{
|
||||
|
|
|
@ -166,7 +166,7 @@ static
|
|||
container.Clear();
|
||||
}
|
||||
|
||||
public static mixin DeleteDictionyAndKeys(var container)
|
||||
public static mixin DeleteDictionaryAndKeys(var container)
|
||||
{
|
||||
if (container != null)
|
||||
{
|
||||
|
@ -178,7 +178,7 @@ static
|
|||
}
|
||||
}
|
||||
|
||||
public static mixin DeleteDictionyAndKeysAndItems(var container)
|
||||
public static mixin DeleteDictionaryAndKeysAndItems(var container)
|
||||
{
|
||||
if (container != null)
|
||||
{
|
||||
|
|
|
@ -225,7 +225,7 @@ namespace System {
|
|||
}
|
||||
|
||||
#if FEATURE_WIN32_REGISTRY
|
||||
public Dictionary<String, TimeZoneInfo> m_systemTimeZones ~ DeleteDictionyAndKeysAndItems!(_);
|
||||
public Dictionary<String, TimeZoneInfo> m_systemTimeZones ~ DeleteDictionaryAndKeysAndItems!(_);
|
||||
//public ReadOnlyCollection<TimeZoneInfo> m_readOnlySystemTimeZones;
|
||||
public bool m_allSystemTimeZonesRead;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue