Skip to content

Commit 71fcaa4

Browse files
authored
[Docs] Fixed a couple of typos in CONTRIBUTING (#63205)
Fixed a couple of typos in contribution guide.
1 parent d04edcd commit 71fcaa4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ specifically these lines tell you that Elasticsearch is ready:
137137
[2020-05-29T14:50:35,167][INFO ][o.e.h.AbstractHttpServerTransport] [runTask-0] publish_address {127.0.0.1:9200}, bound_addresses {[::1]:9200}, {127.0.0.1:9200}
138138
[2020-05-29T14:50:35,169][INFO ][o.e.n.Node ] [runTask-0] started
139139

140-
But to be honest its typically easier to wait until the console stopps scrolling
140+
But to be honest its typically easier to wait until the console stops scrolling
141141
and then run `curl` in another window like this:
142142

143143
curl -u elastic:password localhost:9200
@@ -587,13 +587,13 @@ allows you to use these configurations arbitrarily. Here are some of the most
587587
common configurations in our build and how we use them:
588588

589589
<dl>
590-
<dt>`implementation`</dt><dd>Dependencies that are used by the project
590+
<dt>`implementation`</dt><dd>Dependencies that are used by the project
591591
at compile and runtime but are not exposed as a compile dependency to other dependent projects.
592-
Dependencies added to the `implementation` configuration are considered an implementation detail
592+
Dependencies added to the `implementation` configuration are considered an implementation detail
593593
that can be changed at a later date without affecting any dependent projects.</dd>
594-
<dt>`api`</dt><dd>Dependencies that are used as compile and runtime depdendencies of a project
594+
<dt>`api`</dt><dd>Dependencies that are used as compile and runtime dependencies of a project
595595
and are considered part of the external api of the project.
596-
<dt>`runtimeOnly`</dt><dd>Dependencies that not on the classpath at compile time but
596+
<dt>`runtimeOnly`</dt><dd>Dependencies that not on the classpath at compile time but
597597
are on the classpath at runtime. We mostly use this configuration to make sure that
598598
we do not accidentally compile against dependencies of our dependencies also
599599
known as "transitive" dependencies".</dd>

0 commit comments

Comments
 (0)