You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ma...@apache.org on 2019/05/06 11:22:46 UTC

[kafka] branch trunk updated: MINOR: Document improvement (#6682)

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

manikumar pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 3322439  MINOR: Document improvement (#6682)
3322439 is described below

commit 3322439d9895a7b599104eeb957939a23fef69cf
Author: Lifei Chen <li...@allseeingsecurity.com>
AuthorDate: Mon May 6 19:22:23 2019 +0800

    MINOR: Document improvement (#6682)
    
    Reviewers: Manikumar Reddy <ma...@gmail.com>
---
 jmh-benchmarks/README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/jmh-benchmarks/README.md b/jmh-benchmarks/README.md
index ea20554..f731bad 100644
--- a/jmh-benchmarks/README.md
+++ b/jmh-benchmarks/README.md
@@ -1,7 +1,7 @@
-###JMH-Benchmark module
+### JMH-Benchmark module
 
 This module contains benchmarks written using [JMH](https://openjdk.java.net/projects/code-tools/jmh/) from OpenJDK.
-Writing correct micro-benchmarks is Java (or another JVM language) is difficult and there are many non-obvious pitfalls (many
+Writing correct micro-benchmarks in Java (or another JVM language) is difficult and there are many non-obvious pitfalls (many
 due to compiler optimizations). JMH is a framework for running and analyzing benchmarks (micro or macro) written in Java (or
 another JVM language).
 
@@ -15,7 +15,7 @@ uber-jar file containing the benchmarking code and required JMH classes.
 JMH is highly configurable and users are encouraged to look through the samples for suggestions
 on what options are available. A good tutorial for using JMH can be found [here](http://tutorials.jenkov.com/java-performance/jmh.html#return-value-from-benchmark-method)
 
-###Gradle Tasks / Running benchmarks in gradle
+### Gradle Tasks / Running benchmarks in gradle
 
 If no benchmark mode is specified, the default is used which is throughput. It is assumed that users run
 the gradle tasks with './gradlew' from the root of the Kafka project.