Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 75a8800

Browse files
committed
fix syntax
1 parent 1ffb0d2 commit 75a8800

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Text/PclExport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ public virtual Task WriteAndFlushAsync(Stream stream, byte[] bytes)
479479
#if !SL5
480480
return stream.WriteAsync(bytes, 0, bytes.Length)
481481
.ContinueWith(t => stream.FlushAsync());
482-
#elif
482+
#else
483483
stream.Write(bytes, 0, bytes.Length);
484484
stream.Flush();
485485
#endif

0 commit comments

Comments
 (0)