From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS53758 23.128.96.0/24 X-Spam-Status: No, score=-3.7 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 059C71F5AE for ; Wed, 12 May 2021 06:47:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229654AbhELGsn (ORCPT ); Wed, 12 May 2021 02:48:43 -0400 Received: from mx2.suse.de ([195.135.220.15]:43390 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229580AbhELGsn (ORCPT ); Wed, 12 May 2021 02:48:43 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id A599AAEEF; Wed, 12 May 2021 06:47:34 +0000 (UTC) Date: Wed, 12 May 2021 08:47:33 +0200 From: Michal =?iso-8859-1?Q?Such=E1nek?= To: Felipe Contreras Cc: Varun Varada , git@vger.kernel.org Subject: Re: [PATCH] doc: replace jargon word "impact" with "effect"/"affect" Message-ID: <20210512064733.GP12700@kitsune.suse.cz> References: <20210406092440.GZ6564@kitsune.suse.cz> <609ae224aa509_6064920851@natae.notmuch> <20210511202502.GM12700@kitsune.suse.cz> <609b4eea1088a_678ff208ba@natae.notmuch> <20210512040926.GN12700@kitsune.suse.cz> <609b63e48fd49_6d7da2086@natae.notmuch> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <609b63e48fd49_6d7da2086@natae.notmuch> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Wed, May 12, 2021 at 12:13:08AM -0500, Felipe Contreras wrote: > Michal Suchánek wrote: > > On Tue, May 11, 2021 at 10:43:38PM -0500, Felipe Contreras wrote: > > > It is a paradox called "the bikeshedding effect". When you contribute a > > > complex and convoluted change it's easier to get it in because few people > > > can object (as few people can understand it). But when you contribute a > > > change as simple as changing the color of something, then *everyone* can > > > opine (literally). > > > > You forget that what you are doing right now is bikeshedding after the > > fact. > > Except that's not what I'm doing. > > > You can use 'affect' or 'impact' and it generally conveys the same > > meaning. > > That's clearly *your* opinion, but that's not my opinon. > > I'm not arguing between blue and red; I'm arguing between water-based and > lead-based paint. No, you are not. There is no clear problem with 'impact', either. So if somebody comes along later and says that they find 'affect' confusing and impact should be used does that need to be accepted as well, back and forth ad nauseam? > The difference may not matter to you, but it matters to me. > > If it's bikeshedding to you, and it "gnerally conveys the same meaning", > why are you arguing against? So if 'for' loops and 'while' loops generally convey the same meaning should we accept patches that replace some 'for' loops with 'while' lopps or vice versa? Surely not. There are different situations in which loops can be used, and different people find 'for' and 'while' loops clearer and and easier to understand in different situations. If you rewrite the piece of code that includes a loop it might be worthwhile to change the loop type for clarity, and at the time when the code is added or modified it is time to discuss which one is better, not after. On the other hand if you state the goal to not have redundant semicolons then even if code with and without redundant semicolons is the same and in most cases it does not make any difference for human understanding either patches that just remove redundant semicolons work towards a specific goal. That makes them acceptable even if they are very minor because there is clear metric they improve which makes the inverse patch not acceptable. If you want to make the case for 'impact' in general being obscure or hard to understand you will have hard time doing so. There are dictionaries that recognize 'impact' as synonymous to 'affect' without any difference in degree. In the COCA corpus there is around 200k instances of 'effect', around 100k instances of 'affect', and around 100k instances of 'impact' which makes effect/affect about 3 times more frequent than 'impact'. That's not even an order of magnitude - clearly not enough to claim it obscure. All of the words are within first 1k so arguably if you have intermediate knowledge of (US) English you should be familiar with all three. However, there is a different corpus that is much more relevant for the git project: ✔ ~/git [master|…9] 06:35 $ git grep affect | wc -l 368 ✔ ~/git [master|…9] 06:41 $ git grep effect | wc -l 350 ✔ ~/git [master|…9] 06:42 $ git grep impact | wc -l 54 There are only 54 instances of the word 'impact' in the git repository which make up only 7.5%. It is feasible to eliminate those 54 instances completely. In doing so you will make the git project use the same wording consistently which makes it arguably more approachable to non-native speakers with limited vocabulary. That states a clear metric that is improved by such patch which also makes the reverse patch not acceptable and prevents potential for infinite back-and-forth changing from one synonym to the other. Bonus points if you add a test that prevents adding new instances of 'impact' in the future. Thanks Michal