Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Quin Lynch committed May 27, 2024
1 parent 9bd7e7f commit df9bc0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/EdgeDB.Examples.CSharp/Examples/QueryBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private static async Task QueryBuilderDemo(EdgeDBClient client)
.Insert(person)
.UnlessConflict()
.Else(q => q
.Update(x => x)
.Update<Person>()
.Set(old => new
{
Name = "New name"
Expand Down
2 changes: 1 addition & 1 deletion src/EdgeDB.Net.QueryBuilder/Compiled/DebugCompiledQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ char DrawVert(char prev)
switch (token)
{
case 1:
tokenRow.Insert(i, '\u2503');
tokenRow.Insert(i, '|');
break;
case 2:
tokenRow.Insert(i, $"{leftChar}{rightChar}");
Expand Down

0 comments on commit df9bc0b

Please sign in to comment.