Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfish3r committed Feb 23, 2024
1 parent 2b55a11 commit 963e121
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/guide/ad/dirsync.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ redirect_from: "/docs/guide/ad/dirsync/"

# Directory Synchronization (DirSync)

Active Directory provides it's own control for tracking changes in the directory. Note the following constraints when configuring your search:
Active Directory provides its own control for tracking changes in the directory. Note the following constraints when configuring your search:

baseDN | must be the root of a directory partition, which can be a domain partition, the configuration partition, or the schema partition
scope | must be the entire subtree of the partition
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public interface Operation<Q extends Request, S extends Result>

### Synchronous calls

Ldaptive is asynchronous at it's core but provides an *execute* to wait for operations to complete.
Ldaptive is asynchronous at its core but provides an *execute* to wait for operations to complete.

{% highlight java %}
{% include source/operations/1.java %}
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/operations/search/async.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ redirect_from: "/docs/guide/operations/search/async/"

# Asynchronous Searching

Ldaptive is asynchronous at it's core since it is built on Netty. The `#execute` method blocks until a result is received, however it's possible to configure handlers to process results as they arrive.
Ldaptive is asynchronous at its core since it is built on Netty. The `#execute` method blocks until a result is received, however it's possible to configure handlers to process results as they arrive.

{% highlight java %}
{% include source/operations/search/async/1.java %}
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ redirect_from: "/docs/guide/properties/"

# Properties

In order to support various configuration formats Ldaptive provides the ability to configure it's objects with Properties. Each property identifies a method which is reflectively invoked with the value.
In order to support various configuration formats Ldaptive provides the ability to configure its objects with Properties. Each property identifies a method which is reflectively invoked with the value.

{% highlight text %}
org.ldaptive.ldapUrl=ldap://directory.ldaptive.org
Expand Down
2 changes: 1 addition & 1 deletion v1/docs/guide/ad/dirsync.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ redirect_from: "/v1/docs/guide/ad/dirsync/"

# Directory Synchronization (DirSync)

Active Directory provides it's own control for tracking changes in the directory. Note the following constraints when configuring your search:
Active Directory provides its own control for tracking changes in the directory. Note the following constraints when configuring your search:

baseDN | must be the root of a directory partition, which can be a domain partition, the configuration partition, or the schema partition
scope | must be the entire subtree of the partition
Expand Down
2 changes: 1 addition & 1 deletion v1/docs/guide/connections.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Supported private key formats include:
- hostname must match the first CN
- if certificate begins with a wildcard, domains are used for matching

As of version 1.2.3, hostname validation can be controlled via the `CertificateHostnameVerifier` interface which is a property of `SslConfig`. One important caveat is that the JNDI provider *always* performs it's own hostname check when using startTLS. Any custom hostname checks will only be performed if their check fails.
As of version 1.2.3, hostname validation can be controlled via the `CertificateHostnameVerifier` interface which is a property of `SslConfig`. One important caveat is that the JNDI provider *always* performs its own hostname check when using startTLS. Any custom hostname checks will only be performed if their check fails.

## Operation Retry

Expand Down
2 changes: 1 addition & 1 deletion v1/docs/guide/properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ redirect_from: "/v1/docs/guide/properties/"

# Properties

In order to support various configuration formats Ldaptive provides the ability to configure it's objects with Properties. Each property identifies a method which is reflectively invoked with the value.
In order to support various configuration formats Ldaptive provides the ability to configure its objects with Properties. Each property identifies a method which is reflectively invoked with the value.

{% highlight text %}
org.ldaptive.ldapUrl=ldap://directory.ldaptive.org
Expand Down
2 changes: 1 addition & 1 deletion v1/docs/guide/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ or it can be specified with a JVM system property:

## Installation & Configuration

Providers may have custom properties that aren't represented in the ldaptive configuration objects. Those properties are detailed in the following sections. If you don't like the behavior of a provider consider extending it to change it's functionality.
Providers may have custom properties that aren't represented in the ldaptive configuration objects. Those properties are detailed in the following sections. If you don't like the behavior of a provider consider extending it to change its functionality.

### JNDI Provider

Expand Down
2 changes: 1 addition & 1 deletion v1/docs/guide/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Expects to find /templates-context.xml in the classpath and returns search resul
</web-app>
{% endhighlight %}

This webapp can be used with the maven war overlay to customize it's configuration:
This webapp can be used with the maven war overlay to customize its configuration:

{% highlight xml %}
<dependencies>
Expand Down

0 comments on commit 963e121

Please sign in to comment.