You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/02/06 18:37:20 UTC

[iceberg] branch master updated: Docs: Fix sample code in CONTRIBUTING.md (#4049)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new d045258  Docs: Fix sample code in CONTRIBUTING.md (#4049)
d045258 is described below

commit d045258dfae76e91592433930b32577051632832
Author: Mingliang Liu <li...@gmail.com>
AuthorDate: Sun Feb 6 10:37:11 2022 -0800

    Docs: Fix sample code in CONTRIBUTING.md (#4049)
---
 CONTRIBUTING.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index aa1a77b..e328a7d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -100,7 +100,7 @@ Avoid boolean arguments to methods that are not `private` to avoid confusing inv
 ```java
   // prefer exposing suppressFailure in method names
   public void sendMessageIgnoreFailure() {
-    doSomethingInternal(true);
+    sendMessageInternal(true);
   }
 
   public void sendMessage() {