Skip to content

Commit 8a3b7ec

Browse files
Fix corrupted character
1 parent cdf04ba commit 8a3b7ec

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ root=true
22

33
[*]
44
insert_final_newline = true
5+
charset = utf-8
56

67
[*.cs]
78
indent_style = tab

src/NHibernate/Transaction/AdoNetWithSystemTransactionFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ protected virtual void CompleteTransaction(bool isCommitted)
467467
timeOutGuard.Start();
468468
while (isProcessing && timeOutGuard.ElapsedMilliseconds < _systemTransactionCompletionLockTimeout)
469469
{
470-
// Naïve yield.
470+
// Naïve yield.
471471
Thread.Sleep(10);
472472
isProcessing = _session.IsProcessing();
473473
}

0 commit comments

Comments
 (0)