android-vision
android-vision copied to clipboard
typo on codelabs mobile-vision-ocr/#7
public boolean contains(float x, float y) { // TODO: Check if this graphic's text contains this point. if (text == null) { return false; } RectF rect = new RectF(text.getBoundingBox()); rect = translateRect(rect); return rect.contans(x, y); }
should be contains, at least I think it should be
They've not updated it