Skip to content

Commit de3fd8a

Browse files
Fix corrupted character
1 parent 3d86648 commit de3fd8a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.editorconfig

+1
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

+1-1
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)