Spelling: ... src/modules/launcher (#3694)

This commit is contained in:
Josh Soref
2020-05-25 20:27:13 -04:00
committed by GitHub
parent c674fe1f04
commit 71e528139c
29 changed files with 38 additions and 38 deletions

View File

@@ -9,7 +9,7 @@ using Wox.Infrastructure.Logger;
namespace Wox.Infrastructure.Storage
{
/// <summary>
/// Stroage object using binary data
/// Storage object using binary data
/// Normally, it has better performance, but not readable
/// </summary>
public class BinaryStorage<T>

View File

@@ -2,7 +2,7 @@
{
/// <summary>
/// Save plugin settings/cache,
/// todo should be merged into a abstract class intead of seperate interface
/// todo should be merged into a abstract class instead of separate interface
/// </summary>
public interface ISavable
{

View File

@@ -6,7 +6,7 @@ namespace Wox.Infrastructure.Storage
{
public PluginJsonStorage()
{
// C# releated, add python releated below
// C# related, add python related below
var dataType = typeof(T);
var assemblyName = typeof(T).Assembly.GetName().Name;
DirectoryPath = Path.Combine(Constant.DataDirectory, DirectoryName, Constant.Plugins, assemblyName);