Skip to content

Commit a25a1d1

Browse files
author
Patryk Ziemkowski
committed
Depreciated is a bit different than deprecated.
Depreciated is a term from accountancy, and can mean a decrease in value of assets. I believe its not what we need here :)
1 parent 36e8e52 commit a25a1d1

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

compatibility.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
##Backwards Compatibility
44

55
* import statements and module locations have changed
6-
* depreciated methods
6+
* deprecated methods
77

88
### careful, modules may have shifted during flight
99

@@ -14,24 +14,24 @@ The functionality in within `plotly.plotly` has been moved to two locations:
1414

1515
Read on to see how this might affect you!
1616

17-
### changed/moved/depreciated functionality
17+
### changed/moved/deprecated functionality
1818

1919
Some functionality has moved, or has been altogether deleted. Here's the
2020
rundown of what got effected:
2121

2222
| Name | Action |
2323
| ------------------------ | -------------- |
2424
| `plotly.embed()` | moved |
25-
| `plotly.display()` | depreciated |
26-
| `plotly.signup()` | depreciated |
27-
| `plotly.plotly()` | depreciated |
28-
| `plotly.plotly.ion()` | depreciated |
29-
| `plotly.plotly.ioff()` | depreciated |
25+
| `plotly.display()` | deprecated |
26+
| `plotly.signup()` | deprecated |
27+
| `plotly.plotly()` | deprecated |
28+
| `plotly.plotly.ion()` | deprecated |
29+
| `plotly.plotly.ioff()` | deprecated |
3030
| `plotly.plotly.plot()` | moved/changed |
3131
| `plotly.plotly.iplot()` | moved/changed |
32-
| `plotly.plotly.layout()` | depreciated |
33-
| `plotly.plotly.style()` | depreciated |
34-
| `plotly.stream.init()` | depreciated |
32+
| `plotly.plotly.layout()` | deprecated |
33+
| `plotly.plotly.style()` | deprecated |
34+
| `plotly.stream.init()` | deprecated |
3535
| `plotly.stream.write()` | moved |
3636
| `plotly.stream.close()` | moved |
3737

@@ -164,7 +164,7 @@ case-insensitive string and a file_id number.
164164

165165
###`plotly.display()` is now `plotly.tools.embed()`
166166

167-
The `plotly.display()` function is depreciated and has been replaced with
167+
The `plotly.display()` function is deprecated and has been replaced with
168168
`potly.tools.embed()`.
169169

170170
See the entry on `embed` for more details on new call signatures.
@@ -175,7 +175,7 @@ In general, `'orientation'` now describes how x and y data relate to plots
175175
and can be used more broadly than in just `'histogram'` and `'bar'`. Note,
176176
however, the `'bardir'` still exists in `'layout'`.
177177

178-
###`ion` and `ioff` have been depreciated, use `auto_open=True`
178+
###`ion` and `ioff` have been deprecated, use `auto_open=True`
179179

180180
Previously, you could set whether or not new plots created in Plotly from the
181181
API caused a new browser tab to open.
@@ -222,7 +222,7 @@ figure['layout'].update({}) # (option 2)
222222
figure['layout'].update(key1=val1, key2=val2, key3=val3) # (option 3)
223223
```
224224

225-
###style() has been depreciated
225+
###style() has been deprecated
226226

227227
All style parameters need to be declared within their resepctive objects.
228228
That is, layout styles must be declared within the layout dictionary and data
@@ -234,7 +234,7 @@ Aside from the class name being capitalized, the functionlity of the
234234
streaming class has improved. Run help(plotly.plotly.Stream) for more
235235
information.
236236

237-
###`plotly.signup()` has been depreciated
237+
###`plotly.signup()` has been deprecated
238238

239239
Users must signup initially at the plotly website, this can no longer be done
240240
through the Python API.

0 commit comments

Comments
 (0)