Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Gray Delacluyse committed Oct 28, 2016
2 parents 6bce095 + 9ca2cfb commit 203eb39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -73,7 +73,7 @@ protected override void MapToNamedField(ODocument document, TTarget typedObject)
}
catch
{
// FIX: somtimes collection of embeded documents returned as ORID Collection;
// FIX: sometimes collection of embeded documents returned as ORID Collection;
}
}

Expand Down
Expand Up @@ -333,7 +333,7 @@ private int ParseString(int i, string recordString, ODocument document, string f
// " -> \"
// \ -> \\
// therefore there needs to be a check for valid end of the string which
// is quote character that is not preceeded by backslash character \
// is quote character that is not preceded by backslash character \
if ((recordString[i] == '\\') && (recordString[i + 1] == '\\' || recordString[i + 1] == '"'))
{
i = i + 2;
Expand Down

0 comments on commit 203eb39

Please sign in to comment.