From 63203cd91a5b444c39c41302d554a85c35500958 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 24 Sep 2011 10:59:13 -0400 Subject: [PATCH] Minor Edits --- EXPOSITION | 4 ++-- src/commands/Command.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/EXPOSITION b/EXPOSITION index c68e4c8c3..73d0c955e 100644 --- a/EXPOSITION +++ b/EXPOSITION @@ -5,7 +5,7 @@ Startup Context is a large object that holds all task information, both in terms of the task data, and intermediate run-time data. Having one global Context object means we don't have 50 global variables. Context is therefore just a - big bucket of data. + big global bucket of data. Context::initialize sets up all the data and processes the command line. The initialization process is a big chicken-and-egg problem, because the command @@ -37,7 +37,7 @@ Dispatch Command Objects - + Every task command is implemented by a command object. Column Objects diff --git a/src/commands/Command.cpp b/src/commands/Command.cpp index 2625bc45d..7f0b9258d 100644 --- a/src/commands/Command.cpp +++ b/src/commands/Command.cpp @@ -483,7 +483,7 @@ void Command::modify_task ( // By default, just add/remove it. else - task.set (name, value); + task.set (name, value); // Warn about deprecated/obsolete attribute usage. legacyAttributeCheck (name);