Skip to content

Commit 3a50269

Browse files
authored
changelog.md: Minor language changes
1 parent 1eb58f1 commit 3a50269

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Released on 2018-11-17.
1010
- Exposes both the our classic API (e.g. `dss.v7.DSS_IR` for the immediate/direct results) and global result API (e.g. `dss.v7.DSS_GR` for the global result interface). See [DSS C-API's docs](https://github.com/PMeira/dss_capi/blob/master/docs/usage.md) for a detailed explanation. We default to the GR interface since it will generally be faster at the cost of a small memory overhead.
1111
- Although still experimental, the v8/PM module is more stable. If you try it, please give feedback.
1212
- Error checking is now done for most API writes. That is, if a an OpenDSS error occurs, it should cause a Python exception soon after. Previously, you need to call `CheckForError()` manually to trigger this. This change was introduced after user reports indicated that manually checking for errors is a common behavior.
13-
- Expose API extensions for the classes `LineGeometry`, `WireData`, `LineSpacing`, `CNData`, `TSData`, `Reactor`.
14-
- Make most DSS classes iterable (including buses), e.g. you can now use:
13+
- Exposes API extensions for the classes `LineGeometry`, `WireData`, `LineSpacing`, `CNData`, `TSData`, `Reactor`.
14+
- Makes most DSS classes iterable (including buses), e.g. you can now use:
1515
```python
1616
for l in DSS.ActiveCircuit.Loads:
1717
print(l.Name)
1818
```
19-
- Add a COM patching function (`dss.patch_dss_com`) -- that is, extend the COM instance with iterators like above and some other few functions to make it easier to exchange between COM and DSS Python:
19+
- Adds a COM patching function (`dss.patch_dss_com`) -- that is, extend the COM instance with iterators like above and some other few functions to make it easier to exchange between COM and DSS Python:
2020
```python
2121

2222
import win32com.client, dss

0 commit comments

Comments
 (0)