Skip to content

Commit

Permalink
Fix some typos in manual
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdahl authored and tony19 committed Dec 28, 2013
1 parent 89b7236 commit 653a33d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions logback-site/src/site/pages/manual/appenders.html
Expand Up @@ -503,7 +503,7 @@ <h2 class="doAnchor" name="FileAppender">FileAppender</h2>
<p><span class="label notice">Immediate Flush</span> By default,
each log event is immediately flushed to the underlying output
stream. This default approach is safer in the sense that logging
events are not lost in case your applicaiton exits without properly
events are not lost in case your application exits without properly
closing appenders. However, for significantly increased logging
throughput, you may want to set the <span
class="prop">immediateFlush</span> property of the underlying
Expand Down Expand Up @@ -3939,7 +3939,7 @@ <h3 class="doAnchor" name="AsyncAppender">AsyncAppender</h3>

<p><span class="label notice">Lossy behavior</span> In light of
the discussion above and in order to reduce blocking, by default,
when less than 20% of the queue capacilty remains,
when less than 20% of the queue capacity remains,
<code>AsyncAppender</code> will drop events of level TRACE, DEBUG
and INFO keeping only events of level WARN and ERROR. This
strategy ensures non-blocking handling of logging events (hence
Expand Down
4 changes: 2 additions & 2 deletions logback-site/src/site/pages/manual/groovy.html
Expand Up @@ -94,7 +94,7 @@ <h2 class="doAnchor">General philosophy</h2>
<h2 class="doAnchor">Automatic imports</h2>

<p><span class="label">Since 1.0.10</span> In order to reduce
unnecessary boilerplace several common types and packages are
unnecessary boilerplate several common types and packages are
imported automatically. Thus, as long as you are only configuring
built-in appenders, layouts etc. you do not need to add the
corresponding import statement into your script. You will need
Expand Down Expand Up @@ -192,7 +192,7 @@ <h3>&#8226; <span class="code">logger(String name, Level level, List&lt;String>

<pre class="prettyprint source">logger("com.foo", DEBUG, ["CONSOLE"])</pre>

<p>The next script is similiar to the previous one, except that it
<p>The next script is similar to the previous one, except that it
also sets the the additivity flag of the "com.foo" logger to
false.</p>

Expand Down
2 changes: 1 addition & 1 deletion logback-site/src/site/pages/manual/layouts.html
Expand Up @@ -1051,7 +1051,7 @@ <h2 class="doAnchor" name="ClassicPatternLayout">PatternLayout</h2>

<p>The %rootException converter admits the same optional
parameters as the %xException converter described above,
including depth and eveluators. It outputs also packaging
including depth and evaluators. It outputs also packaging
information. In short, %rootException is very similar to
%xException, only the order of exception output is reversed.
</p>
Expand Down
10 changes: 5 additions & 5 deletions logback-site/src/site/pages/manual/usingSSL.html
Expand Up @@ -164,7 +164,7 @@ <h4><a name="basicConfig.keyStore"></a>
<tr>
<td><code>javax.net.ssl.keyStore</code></td>
<td>Specifies a filesystem path to the file containing your
server components's private key and certificate.</td>
server components' private key and certificate.</td>
</tr>
<tr>
<td><code>javax.net.ssl.keyStoreType</code></td>
Expand Down Expand Up @@ -654,7 +654,7 @@ <h4><a name="SSLParametersConfiguration"></a>
<td><code>String</code></td>
<td>
<p>Specifies a comma-separated list of SSL cipher spec names or
patterns to disable during session negotation. This property is
patterns to disable during session negotiation. This property is
used to filter the cipher suites supported by the SSL engine,
such that any cipher spec matched by this property is disabled.
</p>
Expand All @@ -674,7 +674,7 @@ <h4><a name="SSLParametersConfiguration"></a>
<td><code>String</code></td>
<td>
<p>Specifies a comma-separated list of SSL cipher spec names or
patterns to enable during session negotation. This property is
patterns to enable during session negotiation. This property is
used to filter the cipher suites supported by the SSL engine,
such that only those cipher suites matched by this property are
enabled.
Expand All @@ -695,7 +695,7 @@ <h4><a name="SSLParametersConfiguration"></a>
<td><code>String</code></td>
<td>
<p>Specifies a comma-separated list of SSL protocol names or
patterns to disable during session negotation. This property is
patterns to disable during session negotiation. This property is
used to filter the protocols supported by the SSL engine,
such that any protocol matched by this property is disabled.
</p>
Expand All @@ -715,7 +715,7 @@ <h4><a name="SSLParametersConfiguration"></a>
<td><code>String</code></td>
<td>
<p>Specifies a comma-separated list of SSL protocol names or
patterns to enable during session negotation. This property is
patterns to enable during session negotiation. This property is
used to filter the protocols supported by the SSL engine,
such that only those protocols matched by this property are
enabled.
Expand Down
2 changes: 1 addition & 1 deletion logback-site/src/site/pages/news.html
Expand Up @@ -511,7 +511,7 @@ <h4>Groovy dependency upgraded to version 2.0.0.</h4>
in <code><a
href="manual/appenders.html#smtpIncludeCallerData">SMTPAppender</a></code>
to precompute caller data before storing events for future
transmission. This property adresses <a
transmission. This property addresses <a
href="http://jira.qos.ch/browse/LOGBACK-734">LOGBACK-734</a>
reported by Patrick Hogarty.
</p>
Expand Down
2 changes: 1 addition & 1 deletion logback-site/src/site/pages/setup.html
Expand Up @@ -164,7 +164,7 @@ <h3 class="doAnchor" name="ide">Building with an IDE</h3>
a Groovy-based configurator so there is a dependency on the Groovy
language. It follows that your IDE should have plugins for Maven
and Groovy in order to <em>build</em> logback from your within
IDE. The Groovy dependecy just mentioned is a <em>build-time</em>
IDE. The Groovy dependency just mentioned is a <em>build-time</em>
dependency. The only mandatory logback dependency at runrime is the
JRE, unless of course you wish to use the Groovy configurator in
which case Groovy runtime will be a required dependency as
Expand Down
2 changes: 1 addition & 1 deletion logback-site/src/site/pages/volunteer.html
Expand Up @@ -60,7 +60,7 @@ <h2>Call for volunteers</h2>

<p>The Groovy configurator, aka Gaffer, although pretty cool, is
not getting the attention it deserves. The amount of code
involved, altough not completely trivial, is far from
involved, although not completely trivial, is far from
insurmountable. We are looking for a volunteer to take over
Gaffer.
</p>
Expand Down

0 comments on commit 653a33d

Please sign in to comment.