mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Minor Edits
This commit is contained in:
parent
fa67569093
commit
63203cd91a
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ Startup
|
||||||
Context is a large object that holds all task information, both in terms of
|
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
|
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
|
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
|
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
|
initialization process is a big chicken-and-egg problem, because the command
|
||||||
|
@ -37,7 +37,7 @@ Dispatch
|
||||||
|
|
||||||
|
|
||||||
Command Objects
|
Command Objects
|
||||||
|
Every task command is implemented by a command object.
|
||||||
|
|
||||||
Column Objects
|
Column Objects
|
||||||
|
|
||||||
|
|
|
@ -483,7 +483,7 @@ void Command::modify_task (
|
||||||
|
|
||||||
// By default, just add/remove it.
|
// By default, just add/remove it.
|
||||||
else
|
else
|
||||||
task.set (name, value);
|
task.set (name, value);
|
||||||
|
|
||||||
// Warn about deprecated/obsolete attribute usage.
|
// Warn about deprecated/obsolete attribute usage.
|
||||||
legacyAttributeCheck (name);
|
legacyAttributeCheck (name);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue