@@ -126,7 +126,7 @@ specifically these lines tell you that Elasticsearch is ready:
126126 [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}
127127 [2020-05-29T14:50:35,169][INFO ][o.e.n.Node ] [runTask-0] started
128128
129- But to be honest its typically easier to wait until the console stopps scrolling
129+ But to be honest its typically easier to wait until the console stops scrolling
130130and then run ` curl ` in another window like this:
131131
132132 curl -u elastic:password localhost:9200
@@ -415,13 +415,13 @@ allows you to use these configurations arbitrarily. Here are some of the most
415415common configurations in our build and how we use them:
416416
417417<dl >
418- <dt >`implementation`</dt ><dd >Dependencies that are used by the project
418+ <dt >`implementation`</dt ><dd >Dependencies that are used by the project
419419at compile and runtime but are not exposed as a compile dependency to other dependent projects.
420- Dependencies added to the ` implementation ` configuration are considered an implementation detail
420+ Dependencies added to the ` implementation ` configuration are considered an implementation detail
421421that can be changed at a later date without affecting any dependent projects.</dd >
422- <dt >`api`</dt ><dd >Dependencies that are used as compile and runtime depdendencies of a project
422+ <dt >`api`</dt ><dd >Dependencies that are used as compile and runtime dependencies of a project
423423 and are considered part of the external api of the project.
424- <dt >`runtimeOnly`</dt ><dd >Dependencies that not on the classpath at compile time but
424+ <dt >`runtimeOnly`</dt ><dd >Dependencies that not on the classpath at compile time but
425425are on the classpath at runtime. We mostly use this configuration to make sure that
426426we do not accidentally compile against dependencies of our dependencies also
427427known as "transitive" dependencies".</dd >
0 commit comments