From 6751427eb1c7ad947c5989d5322c92560f59e78b Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 19 Jul 2016 19:47:20 +0200 Subject: [PATCH] Fortune: typo --- autoload/startify/fortune.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify/fortune.vim b/autoload/startify/fortune.vim index d3e3f1c..77ffd12 100644 --- a/autoload/startify/fortune.vim +++ b/autoload/startify/fortune.vim @@ -95,7 +95,7 @@ let s:quotes = exists('g:startify_custom_header_quotes') \ ['Minimize coupling between modules.', '', 'Avoid coupling by writing "shy" code and applying the Law of Demeter.'], \ ['Put abstractions in code, details in metadata.', '', 'Program for the general case, and put the specifics outside the compiled code base.'], \ ['Design using services.', '', 'Design in terms of services-independent, concurrent objects behind well-defined, consistent interfaces.'], - \ ['Separate vIews from models.', '', 'Gain flexibility at low cost by designing your application in terms of models and views.'], + \ ['Separate views from models.', '', 'Gain flexibility at low cost by designing your application in terms of models and views.'], \ ["Don't program by coincidence.", '', "Rely only on reliable things. Beware of accidental complexity, and don't confuse a happy coincidence with a purposeful plan."], \ ['Test your estimates.', '', "Mathematical analysis of algorithms doesn't tell you everything. Try timing your code in its target environment."], \ ['Design to test.', '', 'Start thinking about testing before you write a line of code.'],