Merge "Send the empty string to IME when PlaceholderText shows" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / image-view / image-view.h
index b6f786b..7c99a5f 100644 (file)
@@ -48,7 +48,7 @@ class ImageView;
  * ResouceReadySignal is done after the resource is set then signal will be missed.
  *
  * To protect against this, IsResourceReady() can be checked before connecting to ResourceReadySignal,
- * or the signal connection can be done before setting the resource"
+ * or the signal connection can be done before setting the resource.
  *
  * @code
  *    auto myImageView = ImageView::New( resourceUrl );
@@ -65,7 +65,7 @@ class ImageView;
  * OR Connect to signal before setting resource
  *
  * @code
- *    auto myImageView = ImageView::New( resourceUrl );
+ *    auto myImageView = ImageView::New();
  *    myImageView.ResourceReadySignal.Connect( .... )
  *    myImageView.SetProperty( ImageView::Property::IMAGE, resourceUrl );
  * @endcode