Address reviews - Renaming

This commit is contained in:
Martin Molinero
2019-08-21 16:24:09 -03:00
parent c5a8174d49
commit 24527e0cc2
19 changed files with 49 additions and 54 deletions
@@ -135,16 +135,16 @@ namespace QuantConnect.Algorithm.CSharp
};
/// <summary>
/// Test example custom data showing how to enable the use of map files.
/// Test example custom data showing how to enable the use of mapping.
/// Implemented as a wrapper of existing NWSA->FOXA equity
/// </summary>
private class CustomDataUsingMapping : TradeBar
{
/// <summary>
/// Indicates if there is support for map files
/// Indicates if there is support for mapping
/// </summary>
/// <returns>True indicates map files should be used</returns>
public override bool UsesMapFiles()
/// <returns>True indicates mapping should be done</returns>
public override bool RequiresMapping()
{
return true;
}