Correct typos

This commit is contained in:
Thomas Lauf 2017-09-14 18:33:05 +02:00
parent 902d3d0161
commit c9a7a59679
2 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@ int CmdChartDay (
Rules& rules,
Database& database)
{
// Create a filter, and if empty, choose the current month.
// Create a filter, and if empty, choose the current day.
auto filter = getFilter (cli);
if (! filter.range.is_started ())
{
@ -75,7 +75,7 @@ int CmdChartWeek (
Rules& rules,
Database& database)
{
// Create a filter, and if empty, choose the current month.
// Create a filter, and if empty, choose the current week.
auto filter = getFilter (cli);
if (! filter.range.is_started ())
{

View file

@ -34,9 +34,9 @@
// The :fill hint is used to eliminate gaps on interval modification, and only
// a single interval is affected.
//
// Fill works by extending an interval in both directions if possible, to abut
// either an interval or an exclusion, while being conћtrained by a filter
// range.
// Fill works by extending an interval in both directions if possible, to
// about either an interval or an exclusion, while being constrained by a
// filter range.
//
void autoFill (
const Rules& rules,