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 4de394f2 MINOR: Fix typo in coding-guide.html (#529)
4de394f2 is described below
commit 4de394f2ff19eef742b9e08098e329da2c7d0146
Author: Imran Nur Hirey <[email protected]>
AuthorDate: Mon Jul 3 16:06:22 2023 +0100
MINOR: Fix typo in coding-guide.html (#529)
Reviewers: Divij Vaidya <[email protected]>
---
coding-guide.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/coding-guide.html b/coding-guide.html
index 22ade9fa..41e5fbd0 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 them
informative.</li>
+ <li>Avoid cryptic abbreviations. Single letter variable names
are fine in very short methods with few variables, otherwise make themnn
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>