Skip to content

Commit 523ca6f

Browse files
committed
Removed "V4" from API description
1 parent 6082bc7 commit 523ca6f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ browserHistory.listen(function (location) {
148148

149149
window.setTitle = function (newTitle) {
150150
const title = document.querySelector('title');
151-
title.textContent = 'API v4 Documentation | Linode Developers';
151+
title.textContent = 'API Documentation | Linode Developers';
152152

153153
if (newTitle) {
154154
title.textContent = `${newTitle} | ${title.textContent}`;

src/getting_started/guides/python/Introduction.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function Introduction(props) {
2323
</header>
2424
<section>
2525
<p>
26-
With the release of API V4, Linode has also released an official Python library.
26+
With the release of API, Linode has also released an official Python library.
2727
This guide is a simple introduction to working with the Python library.
2828
The official Linode Python library is open source on&nbsp;
2929
<ExternalLink to="http://github.com/Linode/python-linode-api">
@@ -43,7 +43,7 @@ export default function Introduction(props) {
4343
<section>
4444
<h2>Connecting to the API</h2>
4545
<p>
46-
The Python library connects to the Linode API V4 using the LinodeClient class,
46+
The Python library connects to the Linode API using the LinodeClient class,
4747
which expects an OAuth Token in his constructor.
4848
</p>
4949
<i>All example code in this guide is executed in a Python shell.</i>

src/getting_started/intros/Introduction.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function Introduction() {
1515
<section>
1616
<br />
1717
<p>
18-
The Linode APIv4 is an HTTP service that follows (to a large extent)&nbsp;
18+
The Linode API is an HTTP service that follows (to a large extent)&nbsp;
1919
<ExternalLink to="https://en.wikipedia.org/wiki/Representational_state_transfer">REST</ExternalLink>
2020
&nbsp;style. Resources like Linodes have predictable URLs that use standard
2121
HTTP methods to manipulate and return standard HTTP status codes to tell you how
@@ -27,7 +27,7 @@ export default function Introduction() {
2727
</Link> to get started making API calls using a Personal Access Token (PAT).
2828
</div>
2929
<p>
30-
All APIv4 endpoints are located at:
30+
All API endpoints are located at:
3131
</p>
3232
<section>
3333
<Code example={`${API_ROOT}/${API_VERSION}/*`} name="bash" noclipboard />

src/layouts/Layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default class Layout extends Component {
4949
</span>
5050
</Link>
5151
</div>
52-
<span className="MainHeader-title">Linode API v4 Documentation</span>
52+
<span className="MainHeader-title">Linode API Documentation</span>
5353
<button
5454
className="ToggleNav navbar-toggler navbar-toggler-right collapsed"
5555
type="button"

0 commit comments

Comments
 (0)