Skip to content

Commit

Permalink
Add dictionary words
Browse files Browse the repository at this point in the history
  • Loading branch information
alchemistmatt committed Sep 25, 2024
1 parent cec4cd1 commit a0a37b2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions PRISM.sln.DotSettings
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@
<s:Boolean x:Key="/Default/UserDictionary/Words/=utime/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Valco/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Veyor/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=vialing/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=virtualized/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=wellplate/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=workdir/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Xbox/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Xymon/@EntryIndexedValue">True</s:Boolean>
Expand Down
2 changes: 1 addition & 1 deletion PRISMDatabaseUtils/IDBTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace PRISMDatabaseUtils
/// </summary>
public interface IDBTools : IEventNotifier
{
// Ignore Spelling: Postgres, Utils, varchar
// Ignore Spelling: Postgres, SQL, Utils, varchar

/// <summary>
/// Database connection string
Expand Down
4 changes: 2 additions & 2 deletions PRISMDatabaseUtils/Logging/PostgresDatabaseLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ namespace PRISMDatabaseUtils.Logging;
/// </summary>
public sealed class PostgresDatabaseLogger : DatabaseLogger
{
// Ignore Spelling: Npgsql, Postgres

private const string DEFAULT_PROCEDURE_NAME = "post_log_entry";

private const string DEFAULT_PG_PARAM_NAME_LOG_TYPE = "_type";
Expand All @@ -20,8 +22,6 @@ public sealed class PostgresDatabaseLogger : DatabaseLogger

private const string DEFAULT_PG_PARAM_NAME_POSTED_BY = "_postedBy";

// Ignore Spelling: Npgsql

private static readonly ConcurrentQueue<LogMessage> mMessageQueue = new();

private static readonly object mMessageQueueLock = new();
Expand Down
2 changes: 2 additions & 0 deletions UnitTests/TestHashUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ namespace PRISMTest
{
internal class TestHashUtilities
{
// Ignore Spelling: CRC, SHA

private const string HASH_TEST_TEMP_DIR_PATH = @"C:\Temp\HashTest";

private const string HASH_TEST_FILE_NAME = "HashTestFile.txt";
Expand Down

0 comments on commit a0a37b2

Please sign in to comment.