Skip to content

Commit

Permalink
cleaning up typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysti Berry authored and Mysti Berry committed Jul 3, 2018
1 parent a481364 commit 319eff8
Show file tree
Hide file tree
Showing 243 changed files with 343 additions and 343 deletions.
2 changes: 1 addition & 1 deletion access-management/v/latest/environments.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Sandbox environments enable you to safely test an application without affecting
== Adding Users to an Environment

You cannont grant users access to an environment directly. To grant a user access to an environment use role permissions. See link:/access-management/roles#assigning-permissions-to-roles[Assigning Permissions to Roles] for more information.
You cannot grant users access to an environment directly. To grant a user access to an environment use role permissions. See link:/access-management/roles#assigning-permissions-to-roles[Assigning Permissions to Roles] for more information.

== To Create a New Environment

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This section describes the Access Management features available in Anypoint Plat

Users running Anypoint Platform Private Cloud Edition can:

. Configure link:/access-management/external-identity#user-management[User Mangement] using link:/access-management/external-identity#configure-ldap[LDAP].
. Configure link:/access-management/external-identity#user-management[User Management] using link:/access-management/external-identity#configure-ldap[LDAP].
. Configure an <<SMTP,SMTP server>> to send API Manager alerts from your Anypoint Platform Private Cloud Edition installation
. Set your <<Security,certificates and private key>> to handle SSL encryption for Anypotnt Platform
. Add customized <<Disclaimer,disclaimer>> to the Anypoint Platform Log-in message
Expand Down
2 changes: 1 addition & 1 deletion access-management/v/latest/users.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ If necessary, you can also remove user permissions, but keep in mind that if use

== Managing External Users of Your Public APIs

When you make an API portal public, users from any other anypoint organization can register client application to call your API. When these users login to your public develper portal, they are considered external users because they are outside of your organization.
When you make an API portal public, users from any other anypoint organization can register client application to call your API. When these users login to your public developer portal, they are considered external users because they are outside of your organization.

When a user logs into Anypoint Platform for the first time they are automatically added to the External Users tab.
From the External Users tab in Access management, you can view a list of all these external users. You can enable or disable each of these external users from this screen. When you disable an external user, they can no longer login to your public portal.
Expand Down
2 changes: 1 addition & 1 deletion anypoint-b2b/v/latest/examples.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This page identifies examples of link:/anypoint-b2b/anypoint-partner-manager[An

For conceptual information, see link:/anypoint-b2b/key-concepts[Key Concepts].

For information about the procedures you would use to implement a given example, see link:/anypoint-b2b/partner-configuration[Configure Trading Parners] and link:/anypoint-b2b/transaction-monitoring[Transaction Monitoring].
For information about the procedures you would use to implement a given example, see link:/anypoint-b2b/partner-configuration[Configure Trading Partners] and link:/anypoint-b2b/transaction-monitoring[Transaction Monitoring].


== End-to-End Use Case
Expand Down
2 changes: 1 addition & 1 deletion anypoint-connector-devkit/v/3.2/glossary.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Provides short definitions of the most commonly used terms across the documentat

* Access Token: a value used by the Consumer to gain access to the Protected Resources on behalf of the User, instead of using the User’s Service Provider credentials.
* APT: an acronym for Annotation Processing Tool for Java. It allows to plug code in to handle annotations in a source file as the code compilation is occuring.
* APT: an acronym for Annotation Processing Tool for Java. It allows to plug code in to handle annotations in a source file as the code compilation is occurring.
* @Connector: class level annotation used to signal whenever a particular Java class will will export its functionality as a Mule Cloud Connector.
Expand Down
2 changes: 1 addition & 1 deletion anypoint-connector-devkit/v/3.3/devkit-glossary.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Provides short definitions of the most commonly used terms across the documentat

* Access Token: a value used by the Consumer to gain access to the Protected Resources on behalf of the User, instead of using the User's Service Provider credentials.
* APT: an acronym for Annotation Processing Tool for Java. It allows to plug code in to handle annotations in a source file as the code compilation is occuring.
* APT: an acronym for Annotation Processing Tool for Java. It allows to plug code in to handle annotations in a source file as the code compilation is occurring.
* @Connector: class level annotation used to signal whenever a particular Java class will will export its functionality as a Mule Cloud Connector.
Expand Down
2 changes: 1 addition & 1 deletion anypoint-connector-devkit/v/3.3/testing-extensions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ As your cloud service accepts data that will be sent to the cloud service it may

=== Testing the interaction with the cloud service

The main purpose of your cloud connector is integration of a local API with a remote one. Through the local API developers can use the web serivce in the same way they use a local service.
The main purpose of your cloud connector is integration of a local API with a remote one. Through the local API developers can use the web service in the same way they use a local service.

The cloud connector, however, typically talks over the internet with some remote service. This means that errors in the connection with the service may occur such as timeouts or network packet loss. Your cloud connector could handle these types of errors either gracefully by retrying or simply throw an exception. Whatever type of error handling you choose, make sure you test the error handling. Often, you may need to mock out the web service you are testing against as you won't be able to reproduce certain error conditions (e.g. timeouts, connection loss) from your side.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ While this authentication method meets the need of the application, it also open

== OAuth

A broadly-used alternative to username-password authentication is http://oauth.net/[OAuth] (Open standard for Authorization). The OAuth protocol allows 3rd-party applications limited access to a resource through an alternative and restricted token. Using this, an application can access a user's account, for example, without knowing the user's actual login credentials, thus limiting the application to perfrom selected operations. 
A broadly-used alternative to username-password authentication is http://oauth.net/[OAuth] (Open standard for Authorization). The OAuth protocol allows 3rd-party applications limited access to a resource through an alternative and restricted token. Using this, an application can access a user's account, for example, without knowing the user's actual login credentials, thus limiting the application to perform selected operations. 

Unlike other protocols, OAuth retains a state (for example, connected) in a cookie and, therefore, doesn't need to send token information with each request it submits. Commonly, APIs employ one of two versions of OAuth: http://oauth.net/core/1.0a/[OAuth 1.0a] and  http://tools.ietf.org/html/rfc6749[Oauth 2.0]; connecting to each of these is subtly different.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

The Connector Testing Framework eases the creation of a connector functional tests, where the developer is not necessarily involved with Mule's internals, such as flows, configuration and Spring beans. The objective of this framework is twofold. On the one hand, we decouple how Mule works and how functional tests are written. On the other hand, we enable a runtime platform to run connector tests with multiple Mule versions by executing the tests in remote Mule instances, achieving a decoupled runtime environment.

The document is organised as follows:
The document is organized as follows:

. Overview of the framework
. Framework Interfaces
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ REST Connect supports the following security schemes:
* Pass Through
* Digest Authentication

If you publish an API Specification with another authentication type, you may recieve an alert email. To have an auto-generated connector, update your API specification to use one of the supported security schemes mentioned above.
If you publish an API Specification with another authentication type, you may receive an alert email. To have an auto-generated connector, update your API specification to use one of the supported security schemes mentioned above.

Basic Authentication Example:

Expand Down
2 changes: 1 addition & 1 deletion anypoint-platform-pcf/v/1.5/pcf-conf-rabbit-ca-cert.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= To Use CA Certificates with Rabbit MQ

This topic describes how to configure Rabbit MQ to use custom CA certificates. This is applicable when using the metrics features of Anypoint Platform for PCF. By default Rabbit MQ generates its own CA certifcates, but you can add additional certificates as required.
This topic describes how to configure Rabbit MQ to use custom CA certificates. This is applicable when using the metrics features of Anypoint Platform for PCF. By default Rabbit MQ generates its own CA certificates, but you can add additional certificates as required.


. Add the custom CA certificate to your Rabbit MQ configuration using the Ops Manager Installation Dashboard.
Expand Down
2 changes: 1 addition & 1 deletion anypoint-platform-pcf/v/1.5/pcf-metering-about.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Anypoint Platform for PCF provides a pricing plans based on different stages of
* staging
* development
You can configure Anypoint Platform Service Brokers for PCF to set limits on the number of montly requests available for each plan type. See link:https://docs.pivotal.io/partners/mulesoft/configuring.html#metrics[Anypoint Platform Service Brokers for PCF] for more information.
You can configure Anypoint Platform Service Brokers for PCF to set limits on the number of monthly requests available for each plan type. See link:https://docs.pivotal.io/partners/mulesoft/configuring.html#metrics[Anypoint Platform Service Brokers for PCF] for more information.

When you configure a space in PCF, you must assign it to one of these plans. The space config tool enables you to flag a space as production, pre-prod, etc.

Expand Down
2 changes: 1 addition & 1 deletion anypoint-platform-pcf/v/1.5/pcf-metering.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ This query returns output similar to the following:
}
----
Using this example as a template, you can perfom other queries supported by the API
Using this example as a template, you can perform other queries supported by the API
2 changes: 1 addition & 1 deletion anypoint-platform-pcf/v/1.5/pcf-space-config.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Configure each of the following properties in the `space_settings.yml`. The valu
|instances | the number of instances of the cloud installer services.
|COM_MULESOFT_CLOUD_MANAGER_PCF_APIURL | the URL of your PCF Apps Manager instance
|COM_MULESOFT_CLOUD_MANAGER_PCF_DOMAIN | the domain name of your PCF installation
|COM_MULESOFT_CLOUD_MANAGER_PCF_USERNAME | your PCF adminstrator username
|COM_MULESOFT_CLOUD_MANAGER_PCF_USERNAME | your PCF administrator username
|COM_MULESOFT_CLOUD_MANAGER_PCF_PASSWORD | your PCF adminsitrator password
|COM_MULESOFT_CLOUD_MANAGER_PCF_SPACE | the name of the PCF space where you are running the Space Configuration Tool.
|COM_MULESOFT_CLOUD_MANAGER_PCF_ORG | the name of the PCF org where you are running the Space Configuration Tool.
Expand Down
2 changes: 1 addition & 1 deletion anypoint-platform-pcf/v/1.5/pcf-workflow.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ See the Pivotal documentation at link:https://docs.pivotal.io/partners/mulesoft/
1. Install the Mule Runtime Buildpack
+
The Mule Runtime buildpack is a custom verson of the PCF Java buildpack that contains the Mule Runtime as well as supporting libraries, services, and application components. See link:pcf-mule-runtime-buildpack[To Customize the Mule Runtime BuildPack].
The Mule Runtime buildpack is a custom version of the PCF Java buildpack that contains the Mule Runtime as well as supporting libraries, services, and application components. See link:pcf-mule-runtime-buildpack[To Customize the Mule Runtime BuildPack].
+
Expand Down
2 changes: 1 addition & 1 deletion anypoint-platform-pcf/v/1.6/pcf-metering-about.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Anypoint Platform for PCF provides a pricing plans based on different stages of
* staging
* development
You can configure Anypoint Platform Service Brokers for PCF to set limits on the number of montly requests available for each plan type. See link:https://docs.pivotal.io/partners/mulesoft/configuring.html#metrics[Anypoint Platform Service Brokers for PCF] for more information.
You can configure Anypoint Platform Service Brokers for PCF to set limits on the number of monthly requests available for each plan type. See link:https://docs.pivotal.io/partners/mulesoft/configuring.html#metrics[Anypoint Platform Service Brokers for PCF] for more information.

When you configure a space in PCF, you must assign it to one of these plans. The space config tool enables you to flag a space as production, pre-prod, etc.

Expand Down
2 changes: 1 addition & 1 deletion anypoint-platform-pcf/v/1.6/pcf-metering.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ This query returns output similar to the following:
}
----
Using this example as a template, you can perfom other queries supported by the API
Using this example as a template, you can perform other queries supported by the API
2 changes: 1 addition & 1 deletion anypoint-platform-pcf/v/1.6/pcf-workflow.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ See the Pivotal documentation at link:https://docs.pivotal.io/partners/mulesoft/
1. Install the Mule Runtime Buildpack
+
The Mule Runtime buildpack is a custom verson of the PCF Java buildpack that contains the Mule Runtime as well as supporting libraries, services, and application components. See link:pcf-mule-runtime-buildpack[To Customize the Mule Runtime BuildPack].
The Mule Runtime buildpack is a custom version of the PCF Java buildpack that contains the Mule Runtime as well as supporting libraries, services, and application components. See link:pcf-mule-runtime-buildpack[To Customize the Mule Runtime BuildPack].
+
Expand Down
2 changes: 1 addition & 1 deletion anypoint-private-cloud/v/1.5/install-create-lb.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[WARNING]
This product was previously named Anypoint Platform On-Premises Edition. Beginning with the 1.5.1 release, it is named Anypoint Platform Private Cloud Edition.

Anypoint Platform Private Cloud Edition must be run in production environment with multiple servers. To distribute traffic amonng servers and to restrict access to specifi ports, you must install and configure a load balancer.
Anypoint Platform Private Cloud Edition must be run in production environment with multiple servers. To distribute traffic amonng servers and to restrict access to specific ports, you must install and configure a load balancer.

[NOTE]
In a single server development environment, MuleSoft recommends using a load balancer.
Expand Down
2 changes: 1 addition & 1 deletion anypoint-private-cloud/v/1.5/system-requirements.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Anypoint Platform Private Cloud Edition requires the following devices. You must

* **Anypoint System Data Device**: stores system configuration and metadata, for example, database and packages. As package sizes can be arbitrary large, it is important to estimate the minimum size requirements and allocate enough space as a dedicated device before installation.

* **etcd Device**: provids dedicated storage for a distributed database used for cluster coordination. It does not require much space, 20GB should be enough.
* **etcd Device**: provides dedicated storage for a distributed database used for cluster coordination. It does not require much space, 20GB should be enough.

* **Application Data Device**: stores application configuration and data. The amount of space required should be at minimum 250GB, but might vary depending on your specific use case. It is important to estimate the minimum size requirements and allocate enough space as a dedicated device ahead of time.

Expand Down
2 changes: 1 addition & 1 deletion anypoint-private-cloud/v/1.6/config-alerts.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Anypoint Platform Private Cloud Edition sends alert emails when CPU and memory usage reach a certain threshold:

* A warning email is sent when CPU and memory usage reach 70% of capacity.
* A critical email is sent when CPU and memory usage reach 80% of capcity.
* A critical email is sent when CPU and memory usage reach 80% of capacity.
== Prerequisites

Expand Down
2 changes: 1 addition & 1 deletion anypoint-private-cloud/v/1.6/pce_access_management.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This section describes the Access Management features available in Anypoint Plat

Users running Anypoint Platform Private Cloud Edition can:

. Configure link:/access-management/external-identity#user-management[User Mangement] using link:/access-management/external-identity#configure-ldap[LDAP].
. Configure link:/access-management/external-identity#user-management[User Management] using link:/access-management/external-identity#configure-ldap[LDAP].
. Configure an <<SMTP,SMTP server>> to send API Manager alerts from your Anypoint Platform Private Cloud Edition installation
. Set your <<Security,certificates and private key>> to handle SSL encryption for Anypotnt Platform
. Add customized <<Disclaimer,disclaimer>> to the Anypoint Platform Log-in message
Expand Down
2 changes: 1 addition & 1 deletion anypoint-private-cloud/v/1.7/config-alerts.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Anypoint Platform Private Cloud Edition sends alert emails when CPU and memory usage reach a certain threshold:

* A warning email is sent when CPU and memory usage reach 70% of capacity.
* A critical email is sent when CPU and memory usage reach 80% of capcity.
* A critical email is sent when CPU and memory usage reach 80% of capacity.
== Prerequisites

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Before deploying an application to an Anypoint Runtime Fabric, you must perform
. Select the application you want to deploy by clicking *Choose File*, then select one of the following options:
+
* *Import file from Exchange*: enables you to select a Mule application that has been published to Exchange.
* *Upload file*: enables you to select a Mule applcation file from your filesystem.
* *Upload file*: enables you to select a Mule application file from your filesystem.

. Select a Runtime Fabric from the *Deployment Target* drop-down list.
+
Expand Down
2 changes: 1 addition & 1 deletion anypoint-studio/v/5/anypoint-studio-features.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Anypoint Studio, MuleSoft's Eclipse-based integration development environment, o
* link:/anypoint-studio/v/5/changing-runtimes-in-studio[Changing Mule Runtimes]

[TIP]
For a basic overview of how to use both the Visual editor and the XML editor to create Mule applciations, see the link:/anypoint-studio/v/5/[parent document] of this section.
For a basic overview of how to use both the Visual editor and the XML editor to create Mule applications, see the link:/anypoint-studio/v/5/[parent document] of this section.

== Metadata Visualization

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Setting up your Development Environment

Setting up a proper environment from the beginning is crucial for success with using Mule. The following document outlines the steps to be taken before any signficant use of Anypoint Studio, Mule ESB, and our Cloud Solutions.
Setting up a proper environment from the beginning is crucial for success with using Mule. The following document outlines the steps to be taken before any significant use of Anypoint Studio, Mule ESB, and our Cloud Solutions.

== Anypoint Studio Setup

Expand Down Expand Up @@ -154,7 +154,7 @@ Login to the Support portal link:https://support.mulesoft.com[here]. If you do n

=== Do you need to configure servers with Anypoint Studio?

No, Anypoint Studio runs as an indepedent application on your machine and it does not need to be configured with any servers.
No, Anypoint Studio runs as an independent application on your machine and it does not need to be configured with any servers.

=== Where do I find my license key?

Expand Down
2 changes: 1 addition & 1 deletion anypoint-studio/v/5/studio-visual-debugger.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To do this, you set a *breakpoint* at any building block in your flow that you w

[CAUTION]
--
Studio Debugger only works with Enterprise Edition runtimes and does not connect to Comunity Edition runtimes.
Studio Debugger only works with Enterprise Edition runtimes and does not connect to Community Edition runtimes.
--


Expand Down
2 changes: 1 addition & 1 deletion anypoint-studio/v/6.5/anypoint-studio-features.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Anypoint Studio, MuleSoft's Eclipse-based integration development environment, o
* link:/anypoint-studio/v/6.5/changing-runtimes-in-studio[Changing Mule Runtimes]

[TIP]
For a basic overview of how to use both the Visual editor and the XML editor to create Mule applciations, see the link:/anypoint-studio/v/6.5/[parent document] of this section.
For a basic overview of how to use both the Visual editor and the XML editor to create Mule applications, see the link:/anypoint-studio/v/6.5/[parent document] of this section.

== Metadata Visualization

Expand Down
Loading

0 comments on commit 319eff8

Please sign in to comment.