From cf8be4bf8f3f9535e582bc67ff13bb04f9f815d4 Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Sat, 23 Feb 2013 12:35:26 -0800 Subject: [PATCH] spelling --- NzbDrone.Api/Directories/DirectoryModule.cs | 2 +- NzbDrone.Api/ErrorManagement/ApiException.cs | 2 +- NzbDrone.Api/ErrorManagement/ErrorHandler.cs | 2 +- NzbDrone.Api/ErrorManagement/ErrorPipeline.cs | 2 +- .../{Extentions => Extensions}/NancyJsonSerializer.cs | 2 +- .../{Extentions => Extensions}/RequestExtensions.cs | 2 +- .../{Extentions => Extensions}/RootPathProvider.cs | 2 +- NzbDrone.Api/{Extentions => Extensions}/Serializer.cs | 5 ++--- NzbDrone.Api/NancyBootstrapper.cs | 2 +- NzbDrone.Api/NzbDrone.Api.csproj | 8 ++++---- NzbDrone.Api/QualityProfiles/QualityProfilesModule.cs | 2 +- NzbDrone.Api/QualityType/QualityTypeModule.cs | 2 +- NzbDrone.Api/RootFolders/RootFolderModule.cs | 2 +- NzbDrone.Api/Series/SeriesLookupModule.cs | 2 +- NzbDrone.Api/Series/SeriesModule.cs | 2 +- NzbDrone.Api/Upcoming/UpcomingModule.cs | 2 +- 16 files changed, 20 insertions(+), 21 deletions(-) rename NzbDrone.Api/{Extentions => Extensions}/NancyJsonSerializer.cs (95%) rename NzbDrone.Api/{Extentions => Extensions}/RequestExtensions.cs (95%) rename NzbDrone.Api/{Extentions => Extensions}/RootPathProvider.cs (87%) rename NzbDrone.Api/{Extentions => Extensions}/Serializer.cs (93%) diff --git a/NzbDrone.Api/Directories/DirectoryModule.cs b/NzbDrone.Api/Directories/DirectoryModule.cs index 5603647329..1fed2d6099 100644 --- a/NzbDrone.Api/Directories/DirectoryModule.cs +++ b/NzbDrone.Api/Directories/DirectoryModule.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using Nancy; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; using NzbDrone.Common; using NzbDrone.Core.RootFolders; diff --git a/NzbDrone.Api/ErrorManagement/ApiException.cs b/NzbDrone.Api/ErrorManagement/ApiException.cs index 84f8597249..27da46d661 100644 --- a/NzbDrone.Api/ErrorManagement/ApiException.cs +++ b/NzbDrone.Api/ErrorManagement/ApiException.cs @@ -3,7 +3,7 @@ using Nancy; using Nancy.Responses; using Newtonsoft.Json; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; namespace NzbDrone.Api.ErrorManagement { diff --git a/NzbDrone.Api/ErrorManagement/ErrorHandler.cs b/NzbDrone.Api/ErrorManagement/ErrorHandler.cs index e3f82c3e3e..154dd8bd47 100644 --- a/NzbDrone.Api/ErrorManagement/ErrorHandler.cs +++ b/NzbDrone.Api/ErrorManagement/ErrorHandler.cs @@ -1,7 +1,7 @@ using System.Linq; using Nancy; using Nancy.ErrorHandling; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; namespace NzbDrone.Api.ErrorManagement { diff --git a/NzbDrone.Api/ErrorManagement/ErrorPipeline.cs b/NzbDrone.Api/ErrorManagement/ErrorPipeline.cs index 60cbfc7f83..fe7ba61d6e 100644 --- a/NzbDrone.Api/ErrorManagement/ErrorPipeline.cs +++ b/NzbDrone.Api/ErrorManagement/ErrorPipeline.cs @@ -2,7 +2,7 @@ using System.Linq; using NLog; using Nancy; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; namespace NzbDrone.Api.ErrorManagement { diff --git a/NzbDrone.Api/Extentions/NancyJsonSerializer.cs b/NzbDrone.Api/Extensions/NancyJsonSerializer.cs similarity index 95% rename from NzbDrone.Api/Extentions/NancyJsonSerializer.cs rename to NzbDrone.Api/Extensions/NancyJsonSerializer.cs index 2ed65784e9..12b593785b 100644 --- a/NzbDrone.Api/Extentions/NancyJsonSerializer.cs +++ b/NzbDrone.Api/Extensions/NancyJsonSerializer.cs @@ -4,7 +4,7 @@ using Nancy; using Newtonsoft.Json; -namespace NzbDrone.Api.Extentions +namespace NzbDrone.Api.Extensions { public class NancyJsonSerializer : ISerializer { diff --git a/NzbDrone.Api/Extentions/RequestExtensions.cs b/NzbDrone.Api/Extensions/RequestExtensions.cs similarity index 95% rename from NzbDrone.Api/Extentions/RequestExtensions.cs rename to NzbDrone.Api/Extensions/RequestExtensions.cs index 0cab1e0120..4852450682 100644 --- a/NzbDrone.Api/Extentions/RequestExtensions.cs +++ b/NzbDrone.Api/Extensions/RequestExtensions.cs @@ -4,7 +4,7 @@ using Nancy.Responses; using Newtonsoft.Json; -namespace NzbDrone.Api.Extentions +namespace NzbDrone.Api.Extensions { public static class JsonExtensions { diff --git a/NzbDrone.Api/Extentions/RootPathProvider.cs b/NzbDrone.Api/Extensions/RootPathProvider.cs similarity index 87% rename from NzbDrone.Api/Extentions/RootPathProvider.cs rename to NzbDrone.Api/Extensions/RootPathProvider.cs index 9f5bda0277..8f19bdb736 100644 --- a/NzbDrone.Api/Extentions/RootPathProvider.cs +++ b/NzbDrone.Api/Extensions/RootPathProvider.cs @@ -2,7 +2,7 @@ using System.Linq; using Nancy; -namespace NzbDrone.Api.Extentions +namespace NzbDrone.Api.Extensions { public class RootPathProvider : IRootPathProvider { diff --git a/NzbDrone.Api/Extentions/Serializer.cs b/NzbDrone.Api/Extensions/Serializer.cs similarity index 93% rename from NzbDrone.Api/Extentions/Serializer.cs rename to NzbDrone.Api/Extensions/Serializer.cs index cd815d53ab..5d6b0f8f34 100644 --- a/NzbDrone.Api/Extentions/Serializer.cs +++ b/NzbDrone.Api/Extensions/Serializer.cs @@ -1,9 +1,8 @@ -using System.IO; -using System.Linq; +using System.Linq; using Newtonsoft.Json; using Newtonsoft.Json.Serialization; -namespace NzbDrone.Api.Extentions +namespace NzbDrone.Api.Extensions { public static class Serializer { diff --git a/NzbDrone.Api/NancyBootstrapper.cs b/NzbDrone.Api/NancyBootstrapper.cs index 562517112e..e89427841c 100644 --- a/NzbDrone.Api/NancyBootstrapper.cs +++ b/NzbDrone.Api/NancyBootstrapper.cs @@ -8,7 +8,7 @@ using Nancy.Conventions; using Nancy.Diagnostics; using NzbDrone.Api.ErrorManagement; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; using NzbDrone.Common; using NzbDrone.Core; using NzbDrone.Core.Lifecycle; diff --git a/NzbDrone.Api/NzbDrone.Api.csproj b/NzbDrone.Api/NzbDrone.Api.csproj index 092d3fe5ab..12aee9d292 100644 --- a/NzbDrone.Api/NzbDrone.Api.csproj +++ b/NzbDrone.Api/NzbDrone.Api.csproj @@ -111,8 +111,8 @@ - - + + @@ -120,7 +120,7 @@ - + @@ -136,7 +136,7 @@ - + diff --git a/NzbDrone.Api/QualityProfiles/QualityProfilesModule.cs b/NzbDrone.Api/QualityProfiles/QualityProfilesModule.cs index 640f145dca..17c5c6ebb2 100644 --- a/NzbDrone.Api/QualityProfiles/QualityProfilesModule.cs +++ b/NzbDrone.Api/QualityProfiles/QualityProfilesModule.cs @@ -2,7 +2,7 @@ using System.Linq; using AutoMapper; using Nancy; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; using NzbDrone.Core.Providers; using NzbDrone.Core.Repository.Quality; using NzbDrone.Api.QualityType; diff --git a/NzbDrone.Api/QualityType/QualityTypeModule.cs b/NzbDrone.Api/QualityType/QualityTypeModule.cs index 88ef10e234..e0f1d1b40f 100644 --- a/NzbDrone.Api/QualityType/QualityTypeModule.cs +++ b/NzbDrone.Api/QualityType/QualityTypeModule.cs @@ -2,7 +2,7 @@ using System.Linq; using AutoMapper; using Nancy; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; using NzbDrone.Api.QualityProfiles; using NzbDrone.Core.Providers; diff --git a/NzbDrone.Api/RootFolders/RootFolderModule.cs b/NzbDrone.Api/RootFolders/RootFolderModule.cs index 1b156c52b3..87033936db 100644 --- a/NzbDrone.Api/RootFolders/RootFolderModule.cs +++ b/NzbDrone.Api/RootFolders/RootFolderModule.cs @@ -1,6 +1,6 @@ using System.Linq; using Nancy; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; using NzbDrone.Core.Providers; using NzbDrone.Core.Repository; using NzbDrone.Core.RootFolders; diff --git a/NzbDrone.Api/Series/SeriesLookupModule.cs b/NzbDrone.Api/Series/SeriesLookupModule.cs index 27460c95bb..f0c338d1dc 100644 --- a/NzbDrone.Api/Series/SeriesLookupModule.cs +++ b/NzbDrone.Api/Series/SeriesLookupModule.cs @@ -1,6 +1,6 @@ using System.Linq; using Nancy; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; using NzbDrone.Api.QualityType; using NzbDrone.Core.Providers; diff --git a/NzbDrone.Api/Series/SeriesModule.cs b/NzbDrone.Api/Series/SeriesModule.cs index 2f9bb9fb10..84972871f5 100644 --- a/NzbDrone.Api/Series/SeriesModule.cs +++ b/NzbDrone.Api/Series/SeriesModule.cs @@ -5,7 +5,7 @@ using AutoMapper; using FluentValidation; using Nancy; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; using NzbDrone.Common; using NzbDrone.Core.Tv; using NzbDrone.Core.Jobs; diff --git a/NzbDrone.Api/Upcoming/UpcomingModule.cs b/NzbDrone.Api/Upcoming/UpcomingModule.cs index 8247bbedc8..3ca1f04865 100644 --- a/NzbDrone.Api/Upcoming/UpcomingModule.cs +++ b/NzbDrone.Api/Upcoming/UpcomingModule.cs @@ -5,7 +5,7 @@ using AutoMapper; using FluentValidation; using Nancy; -using NzbDrone.Api.Extentions; +using NzbDrone.Api.Extensions; using NzbDrone.Api.Series; using NzbDrone.Common; using NzbDrone.Core.Jobs;