Update README

stix2.1
Greg Back 2017-01-17 14:26:12 -08:00
parent d054b9deba
commit 9974ade5b6
1 changed files with 10 additions and 10 deletions

View File

@ -26,7 +26,7 @@ indicator = Indicator(name="File hash for malware variant",
```
Certain required attributes of all objectswill be set automatically if not
Certain required attributes of all objects will be set automatically if not
provided as keyword arguments:
- If not provided, `type` will be set automatically to the correct type.
@ -40,7 +40,7 @@ provided as keyword arguments:
will cause an error:
```python
>>> indicator = Indicator(type='indicator', ...)
>>> indicator = Indicator(type='xxx', ...)
ValueError: Indicators must have type='indicator'
```