Skip to content

Commit edbda76

Browse files
committed
PVector tutorial: add missing starting square bracket
1 parent 4b4fae5 commit edbda76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/tutorials/text/pvector/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ In an ideal world, we would just be able to rewrite the above to be:
193193
location = location + velocity;
194194
```
195195

196-
However, in Processing, the addition operator '+' is reserved for primitive values (integers, floats, etc.) only. Processing doesn't know how to add two **PVector**](http://processing.org/reference/PVector.html) objects together any more than it knows how to add two PFont objects or PImage objects. Fortunately for us, the [**PVector**](http://processing.org/reference/PVector.html) class is implemented with functions for common mathematical operations.
196+
However, in Processing, the addition operator '+' is reserved for primitive values (integers, floats, etc.) only. Processing doesn't know how to add two [**PVector**](http://processing.org/reference/PVector.html) objects together any more than it knows how to add two PFont objects or PImage objects. Fortunately for us, the [**PVector**](http://processing.org/reference/PVector.html) class is implemented with functions for common mathematical operations.
197197

198198
## Vectors: Addition
199199

0 commit comments

Comments
 (0)