From 72eb547f226b6b297019329442cb527284b82bef Mon Sep 17 00:00:00 2001 From: Ahmed El-Helw Date: Mon, 11 Apr 2016 14:10:37 -0700 Subject: [PATCH] Cleanup React comments and unused imports Summary: @public Fix some typos in comments. Reviewed By: astreet Differential Revision: D3161278 --- .../src/main/java/com/facebook/react/flat/DrawCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/flat/DrawCommand.java b/ReactAndroid/src/main/java/com/facebook/react/flat/DrawCommand.java index 9f3aec6c6..3191180c8 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/flat/DrawCommand.java +++ b/ReactAndroid/src/main/java/com/facebook/react/flat/DrawCommand.java @@ -12,8 +12,8 @@ package com.facebook.react.flat; import android.graphics.Canvas; /** - * DrawCommand is an inteface that shadow nodes need to implement to do the drawing. - * Instaces of DrawCommand are created in background thread and passed to UI thread. + * DrawCommand is an interface that shadow nodes need to implement to do the drawing. + * Instances of DrawCommand are created in background thread and passed to UI thread. * Once a DrawCommand is shared with UI thread, it can no longer be mutated in background thread. */ public interface DrawCommand {