### Select the type of content error. Factual Mistake ### Section Reference ### Location of the error content/references/examples/processing/PImage_height/PImage_height.pde ### Describe the error The code example given in reference section for Pimage_height doesn’t have any mention at all of height in it. It should be updated to be relevant to the heading under which it occurs. ### Suggested correction Perhaps the content could be updated to be parallel in structure to the documentation for Pimage_width ### Language English ### Screenshots or references // this is the code example given, which does not illustrate how PImage.height works and does not even reference it PImage photo; void setup() { size(400, 400); photo = loadImage("mt-horai.jpg"); } void draw() { image(photo, 0, 0); } ### Additional context _No response_