From fb653cc33646e3fab92f60e616afa68f9e4c9fe7 Mon Sep 17 00:00:00 2001 From: Dale Wijnand <344610+dwijnand@users.noreply.github.com> Date: Mon, 22 Jul 2019 14:25:01 +0100 Subject: [PATCH] Fix some grammar in the typed style guide (#27388) Also, use English ("for example") rather than Latin ("e.g.") in docs. --- akka-docs/src/main/paradox/typed/style-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/src/main/paradox/typed/style-guide.md b/akka-docs/src/main/paradox/typed/style-guide.md index 8e2a20e575..df42f3b8e0 100644 --- a/akka-docs/src/main/paradox/typed/style-guide.md +++ b/akka-docs/src/main/paradox/typed/style-guide.md @@ -446,5 +446,5 @@ is a list of additional conventions: * Incoming messages to an actor are typically called commands, and therefore the super type of all messages that an actor can handle is typically @scala[`sealed trait Command`]@java[`interface Command {}`]. -* Use past tense for the events persisted by an `EventSourcedBehavior` since those represent facts that has happened, - e.g. `Incremented`. +* Use past tense for the events persisted by an `EventSourcedBehavior` since those represent facts that have happened, + for example `Incremented`.