Skip to content

Commit

Permalink
Fixed some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-shodan committed Jun 30, 2023
1 parent c35fd15 commit 188b0bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CommandHandling.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private static async Task REPL(RootCommand rootCommand)
}

CommandLineRaw = line.Split(" ");
await rootCommand.InvokeAsync(line.Split(" "));
await rootCommand.InvokeAsync(line);
}
}

Expand Down
5 changes: 4 additions & 1 deletion src/Content/Email.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ Sign off the email with the senders first name only.
Emails should be at most two paragraphs long. Internals email should be informal, external ones formal.
Don't mention a persons job title unless it's relevant to the email.
For internal emails add a reasonable frequency of human errors, this could be spelling or grammatical errors, typos or incorrect/missing apostrophies.
Internal emails could also include nicknames or briefly mention events outside of work.";
Internal emails could also include nicknames or briefly mention events outside of work.
Never mention you've introduced spelling errors or typos in the output.
Never mention you're a machine.
";

foreach (var promptObject in objectsToDiscuss)
{
Expand Down

0 comments on commit 188b0bf

Please sign in to comment.