From e6b2e4eb05281fe762b3a8931a65e51037c55596 Mon Sep 17 00:00:00 2001 From: Nate Eagleson Date: Fri, 8 Feb 2013 20:20:38 -0500 Subject: [PATCH] Fix minor grammar error in commit views Use the phrase "authored on " rather than "authored in ". --- views/commit.twig | 2 +- views/commits_list.twig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/views/commit.twig b/views/commit.twig index 058d037..eac59bc 100644 --- a/views/commit.twig +++ b/views/commit.twig @@ -14,7 +14,7 @@
- {{ commit.author.name }} authored in {{ commit.date | date('d/m/Y \\a\\t H:i:s') }}
Showing {{ commit.changedFiles }} changed files
+ {{ commit.author.name }} authored on {{ commit.date | date('d/m/Y \\a\\t H:i:s') }}
Showing {{ commit.changedFiles }} changed files
diff --git a/views/commits_list.twig b/views/commits_list.twig index dbc6eec..0c5b2a3 100644 --- a/views/commits_list.twig +++ b/views/commits_list.twig @@ -13,7 +13,7 @@ View {{ item.shortHash }}

{{ item.message }}

- {{ item.author.name }} authored in {{ item.date | date('d/m/Y \\a\\t H:i:s') }} + {{ item.author.name }} authored on {{ item.date | date('d/m/Y \\a\\t H:i:s') }} {% endfor %}