Skip to content

Commit e938e3b

Browse files
authored
(FM-7878) Docs review
This commit makes minor grammatical edits.
1 parent 8585792 commit e938e3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

language/resource-api/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ To allow implementors a wide latitude in implementing connection and retry handl
483483
484484
#### Bridging into Puppet
485485
486-
Before Resource API remote resources were only supported through the `Puppet::Util::NetworkDevice` namespace. To connect your Transport to what puppet expects, a shim `Device` class needs to be provided.
486+
Before the Resource API, remote resources were only supported through the `Puppet::Util::NetworkDevice` namespace. To connect your transport to what Puppet expects, you need to provide a shim `Device` class.
487487
488488
```ruby
489489
# lib/puppet/type/nx9k_vlan.rb
@@ -507,9 +507,9 @@ module Puppet::Util::NetworkDevice::Nexus
507507
end
508508
```
509509
510-
Inheriting from `Puppet::ResourceApi::Transport::Wrapper` will ensure that the necessary `Device` methods will be implemented using your transport. Specify the transport name in the `super` call to make the connection.
510+
Inheriting from `Puppet::ResourceApi::Transport::Wrapper` ensures that the necessary `Device` methods are implemented using your transport. Specify the transport name in the `super` call to make the connection.
511511
512-
> Note that because of the way Resource API is bundled with puppet agent packages, agent versions 6.0 through 6.3 will be incompatible with this way of executing remote content. Those versions go out of commercial support with [PE 2019.0 in August 2019](https://puppet.com/misc/puppet-enterprise-lifecycle).
512+
> Note that because of the way the Resource API is bundled with Puppet agent packages, agent versions 6.0 through 6.3 are incompatible with this way of executing remote content. These versions will not be supported after [PE 2019.0 in August 2019](https://puppet.com/misc/puppet-enterprise-lifecycle).
513513
514514
#### Porting existing code
515515

0 commit comments

Comments
 (0)