From f130ca06580414632325dde825381009c93a1b45 Mon Sep 17 00:00:00 2001 From: Timon Date: Sat, 14 Jul 2018 12:19:12 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a5a1a75..59071a4 100644 --- a/README.md +++ b/README.md @@ -322,7 +322,7 @@ For example a module like cursor has the following file stucture: The above structure is the same for the terminal, color, manager modules. -Why I chose for this design: +Why I have chosen for this design: - Because you can easaly extend to muliple platforms by implementing the trait int the mod.rs. - You keep the functionalites for different platforms speperated in different files. - Also you have one API the user can call like in the `cursor.rs` above. This file should be avoided to change that mutch. All the other code could change alot because it has not impact on the user side.