File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ browserHistory.listen(function (location) {
148
148
149
149
window . setTitle = function ( newTitle ) {
150
150
const title = document . querySelector ( 'title' ) ;
151
- title . textContent = 'API v4 Documentation | Linode Developers' ;
151
+ title . textContent = 'API Documentation | Linode Developers' ;
152
152
153
153
if ( newTitle ) {
154
154
title . textContent = `${ newTitle } | ${ title . textContent } ` ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export default function Introduction(props) {
23
23
</ header >
24
24
< section >
25
25
< 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.
27
27
This guide is a simple introduction to working with the Python library.
28
28
The official Linode Python library is open source on
29
29
< ExternalLink to = "http://github.com/Linode/python-linode-api" >
@@ -43,7 +43,7 @@ export default function Introduction(props) {
43
43
< section >
44
44
< h2 > Connecting to the API</ h2 >
45
45
< 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,
47
47
which expects an OAuth Token in his constructor.
48
48
</ p >
49
49
< i > All example code in this guide is executed in a Python shell.</ i >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export default function Introduction() {
15
15
< section >
16
16
< br />
17
17
< p >
18
- The Linode APIv4 is an HTTP service that follows (to a large extent)
18
+ The Linode API is an HTTP service that follows (to a large extent)
19
19
< ExternalLink to = "https://en.wikipedia.org/wiki/Representational_state_transfer" > REST</ ExternalLink >
20
20
style. Resources like Linodes have predictable URLs that use standard
21
21
HTTP methods to manipulate and return standard HTTP status codes to tell you how
@@ -27,7 +27,7 @@ export default function Introduction() {
27
27
</ Link > to get started making API calls using a Personal Access Token (PAT).
28
28
</ div >
29
29
< p >
30
- All APIv4 endpoints are located at:
30
+ All API endpoints are located at:
31
31
</ p >
32
32
< section >
33
33
< Code example = { `${ API_ROOT } /${ API_VERSION } /*` } name = "bash" noclipboard />
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default class Layout extends Component {
49
49
</ span >
50
50
</ Link >
51
51
</ div >
52
- < span className = "MainHeader-title" > Linode API v4 Documentation</ span >
52
+ < span className = "MainHeader-title" > Linode API Documentation</ span >
53
53
< button
54
54
className = "ToggleNav navbar-toggler navbar-toggler-right collapsed"
55
55
type = "button"
You can’t perform that action at this time.
0 commit comments