1
0
mirror of https://bitbucket.org/anguist/ntpa synced 2025-10-05 10:30:56 +00:00

Fixed spelling mistake

This commit is contained in:
Carsten Larsen
2016-06-12 19:46:25 +00:00
parent 6d11ca26b5
commit 1b774c9ec4

View File

@ -43,13 +43,13 @@ namespace Ntp.Data.Provider
#if MYSQL
return new MySqlFactory();
#else
throw new ApplicationException("NTP Analyzer was not build wit MySQL support.");
throw new ApplicationException("NTP Analyzer was not build with MySQL support.");
#endif
case SqlDatabaseProvider.PostgreSql:
#if PGSQL
return new PostgreSqlFactory();
#else
throw new ApplicationException("NTP Analyzer was not build wit PostgreSQL support.");
throw new ApplicationException("NTP Analyzer was not build with PostgreSQL support.");
#endif
default:
return null;