diff --git a/.gitignore b/.gitignore index 6c1eb92..f291313 100644 --- a/.gitignore +++ b/.gitignore @@ -210,6 +210,7 @@ PublishScripts/ # NuGet v3's project.json files produces more ignorable files *.nuget.props *.nuget.targets +.nuget/ # Microsoft Azure Build Output csx/ diff --git a/src/Wolfgang.Etl.Abstractions/LoaderBase.cs b/src/Wolfgang.Etl.Abstractions/LoaderBase.cs index 2b09152..b0d2f77 100644 --- a/src/Wolfgang.Etl.Abstractions/LoaderBase.cs +++ b/src/Wolfgang.Etl.Abstractions/LoaderBase.cs @@ -9,7 +9,7 @@ namespace Wolfgang.Etl.Abstractions; /// -/// Provides a basic implementation for data loaders the write data of type TDestination to a target destination. +/// Provides a basic implementation for data loaders that write data of type TDestination to a target destination. /// Library authors can use this base class to create custom loaders by inheriting from it and implementing /// LoadWorkerAsync and CreateProgressReport methods. ///