This is an automated email from the ASF dual-hosted git repository.
divijv pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/kafka-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new a52eac34 Revert "MINOR: Fix typo in coding-guide.html (#529)" (#530)
a52eac34 is described below
commit a52eac3487185ad7fd83d63a3f8c7196222f5f70
Author: Divij Vaidya <[email protected]>
AuthorDate: Mon Jul 3 19:45:25 2023 +0200
Revert "MINOR: Fix typo in coding-guide.html (#529)" (#530)
This reverts commit 4de394f2ff19eef742b9e08098e329da2c7d0146.
Reviewers: Kamal Chandraprakash <[email protected]>, Mickael
Maison <[email protected]>
---
coding-guide.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/coding-guide.html b/coding-guide.html
index 41e5fbd0..22ade9fa 100644
--- a/coding-guide.html
+++ b/coding-guide.html
@@ -11,7 +11,7 @@
<h2>Basic Stuff</h2>
<ul>
- <li>Avoid cryptic abbreviations. Single letter variable names
are fine in very short methods with few variables, otherwise make themnn
informative.</li>
+ <li>Avoid cryptic abbreviations. Single letter variable names
are fine in very short methods with few variables, otherwise make them
informative.</li>
<li>Clear code is preferable to comments. When possible make
your naming so good you don't need comments. When that isn't possible comments
should be thought of as mandatory, write them to be <i>read</i>.</li>
<li>Logging, configuration, and public APIs are our "UI". Pay
special attention to them and make them pretty, consistent, and usable.</li>
<li>There is not a maximum line length (certainly not 80
characters, we don't work on punch cards any more), but be reasonable.</li>