aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2017-09-19 05:15:35 +0200
committerache <ache@ache.one>2017-09-19 05:15:35 +0200
commite23aaeb0f85b808d758f21d5978ad3a0d0174040 (patch)
treef475071f308b84d60ffbe502e15594cce250fe7d
parent[QuickFix] Makefile install (diff)
Github todo test
-rw-r--r--README.md7
-rwxr-xr-xtodo.cpp1
2 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index aa6ca0b..817b0c9 100644
--- a/README.md
+++ b/README.md
@@ -52,3 +52,10 @@ Exemple of how you can use it :
[✓] Read 1984
[✓] Push it on github
```
+
+
+
+ - [ ] Factoriser les modifications
+ - [ ] Ajouter des commentaires
+ - [ ] Ajouter une capture d'écran
+
diff --git a/todo.cpp b/todo.cpp
index c6a4b8f..2770fee 100755
--- a/todo.cpp
+++ b/todo.cpp
@@ -83,6 +83,7 @@ todo todoFromLine(string line) {
}
ostream& operator<<( ostream& os, const todo& todoTask)
{
+ os << " - ";
switch(todoTask.etat ) {
case DONE_STATE:
os << "[" << (color ? "\e[32m✓\e[0m" : "x") << "] ";