Merge "Trivial fix typos"

This commit is contained in:
Jenkins
2017-05-22 01:39:11 +00:00
committed by Gerrit Code Review
2 changed files with 5 additions and 5 deletions

View File

@@ -5,8 +5,8 @@ BGP - MPLS VPN Overview
The ``bgpvpn`` extension implements the BGP VPN Interconnection API The ``bgpvpn`` extension implements the BGP VPN Interconnection API
which provides the ability to associate OpenStack networks and/or which provides the ability to associate OpenStack networks and/or
routers with Multiprotocol Label Switching (MPLS) Virtual Private routers with Multiprotocol Label Switching (MPLS) Virtual Private
Networks (VPNs) via Border Gateway Patrol (BGP) peering. BGP-MPLS VPNs Networks (VPNs) via Border Gateway Protocol (BGP) peering. BGP-MPLS VPNs
are commonly provided by telecommuncations service providers to are commonly provided by telecommunications service providers to
customers in addition to or instead of Internet connectivity for Wide customers in addition to or instead of Internet connectivity for Wide
Area Networking. This API enables the interconnection of with these Area Networking. This API enables the interconnection of with these
WANs using *Route Targets* to indicate the desired network(s). WANs using *Route Targets* to indicate the desired network(s).

View File

@@ -342,14 +342,14 @@ class TunnelIdInUse(InUse):
A specialization of the InUse exception indicating network creation failed A specialization of the InUse exception indicating network creation failed
because a said tunnel ID is already in use. because a said tunnel ID is already in use.
:param tunnel_id: The ID of the tunnel that's areadly in use. :param tunnel_id: The ID of the tunnel that's already in use.
""" """
message = _("Unable to create the network. " message = _("Unable to create the network. "
"The tunnel ID %(tunnel_id)s is in use.") "The tunnel ID %(tunnel_id)s is in use.")
class ResourceExhausted(ServiceUnavailable): class ResourceExhausted(ServiceUnavailable):
"""A service uavailable error indicating a resource is exhausted.""" """A service unavailable error indicating a resource is exhausted."""
pass pass
@@ -464,7 +464,7 @@ class InvalidConfigurationOption(NeutronException):
class NetworkTunnelRangeError(NeutronException): class NetworkTunnelRangeError(NeutronException):
"""An error due to an invalid network tunnel range. """An error due to an invalid network tunnel range.
An exception indicating an invalid netowrk tunnel range was specified. An exception indicating an invalid network tunnel range was specified.
:param tunnel_range: The invalid tunnel range. If specified in the :param tunnel_range: The invalid tunnel range. If specified in the
start:end' format, they will be converted automatically. start:end' format, they will be converted automatically.