From 459d2436ea356afb835a9105b4054dbb5e73e221 Mon Sep 17 00:00:00 2001 From: "Michael Z. Kadaner" <35671029+MKadaner@users.noreply.github.com> Date: Fri, 2 Feb 2018 22:51:14 +0000 Subject: [PATCH] Update Script.usql.cs --- Examples/HandleEncoding/FixEncodingErrors/Script.usql.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/HandleEncoding/FixEncodingErrors/Script.usql.cs b/Examples/HandleEncoding/FixEncodingErrors/Script.usql.cs index c73d16c..51a362e 100644 --- a/Examples/HandleEncoding/FixEncodingErrors/Script.usql.cs +++ b/Examples/HandleEncoding/FixEncodingErrors/Script.usql.cs @@ -54,7 +54,7 @@ public override IEnumerable Extract(IUnstructuredReader input, IUpdatableR // When extractors read records near the boundary between the splits, the general rules are: // * E(k+1) always skips one (possibly) incomplete record at the beginning of S(k+1) // and starts extracting from the next record. In other words, it skips bytes at the - // beginning of S(k+1) until it has seen a complete record delimiter. + // beginning of S(k+1) until it sees a complete record delimiter. // * Complementarily, E(k) extracts the last record of S(k) and continues extracting // from S(k+1) until it reads one complete record delimiter that started in S(k+1). //