[Minor Doc Fix] Fix Python struct example

This commit is contained in:
Seth Troisi 2018-08-09 12:54:15 -07:00 committed by GitHub
commit 3738dcc747
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1311,7 +1311,7 @@ is used as follows:
>>> v.x = 3.5
>>> v.y = 7.2
>>> print v.x, v.y, v.z
7.8 -4.5 0.0
3.5 7.2 0.0
>>>
</pre></div>