Skip to content

Commit 727921a

Browse files
committed
Fix typo
1 parent f9a4765 commit 727921a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Imageflow/IO/TemporaryFileProviders.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static ITemporaryFileProvider CreateProvider()
4949

5050
public ITemporaryFile Create(bool cleanup,long capacity)
5151
{
52-
if (!cleanup) throw new InvalidOperationException("Memory Mapped Files cannot be persisted")
52+
if (!cleanup) throw new InvalidOperationException("Memory Mapped Files cannot be persisted");
5353
var name = Guid.NewGuid().ToString();
5454
var file = MemoryMappedFile.CreateNew(name, capacity);
5555
return new TemporaryMemoryFile(file, name);

0 commit comments

Comments
 (0)