[Tizen_2.4] fix typo in web_tutorials_n.htm
authorsihoons.yang <sihoons.yang@samsung.com>
Mon, 15 Jun 2015 02:34:22 +0000 (11:34 +0900)
committerSiHoon Yang <sihoons.yang@samsung.com>
Mon, 15 Jun 2015 02:39:45 +0000 (11:39 +0900)
Change-Id: Id316306938e5addbd6111c5c157db258d0293f65
Signed-off-by: sihoons.yang <sihoons.yang@samsung.com>
org.tizen.tutorials/html/native/web/web_tutorials_n.htm

index 0e15713..6dd8fc4 100644 (file)
@@ -183,7 +183,7 @@ window = window_create(NULL, 0, 0, EINA_FALSE);
 
 <p>To create and delete a window object:</p>
 <ol>
-<li>To create a window object, use the <span style="font-family: Courier New,Courier,monospace">elm_win_add(Evas_Object* parent, const char* name, Elm_Win_Type) type</span> function.</li>
+<li>To create a window object, use the <span style="font-family: Courier New,Courier,monospace">elm_win_add(Evas_Object* parent, const char* name, Elm_Win_Type type)</span> function.</li>
  
 <li>You can add a Smart Callback to your window using the <span style="font-family: Courier New,Courier,monospace">evas_object_smart_callback_add (Evas_Object * obj, const char * event, Evas_Smart_Cb func, const void * data)</span> function.</li> 
 
@@ -243,7 +243,7 @@ evas_object_show(horizontal_layout);
        
 <p>The <span style="font-family: Courier New,Courier,monospace">evas_object_size_hint_weight_set()</span> 
 function sets the hints for an object’s weight. <span style="font-family: Courier New,Courier,monospace">EVAS_HINT_EXPAND</span> is a macro definition 
-for a value 1.0. (<span style="font-family: Courier New,Courier,monospace">EVAS_HIT_FILL</span> for -1.0). 
+for a value 1.0. (<span style="font-family: Courier New,Courier,monospace">EVAS_HINT_FILL</span> for -1.0).
 <span style="font-family: Courier New,Courier,monospace">elm_win_resize_object_add (Evas_Object* obj, Evas_Object* subobj)</span> 
 adds a subobj as the resize object of obj. 
 <span style="font-family: Courier New,Courier,monospace">evas_object_show(Evas_Object* obj)</span> makes an obj visible. 
@@ -252,7 +252,7 @@ The <span style="font-family: Courier New,Courier,monospace">elm_box_pack_end (E
 
  <h2 id="view" name="view">Setting the Window View</h2>
 
-<p>Create a window view and set the user agent. To create the view, use the <span style="font-family: Courier New,Courier,monospace">_ewk_view_add()</span> function. The view is an object that displays pages in the browser. To set the user agent, use the <span style="font-family: Courier New,Courier,monospace">ewk_view_user_agent_set()</span> function.</p>
+<p>Create a window view and set the user agent. To create the view, use the <span style="font-family: Courier New,Courier,monospace">ewk_view_add()</span> function. The view is an object that displays pages in the browser. To set the user agent, use the <span style="font-family: Courier New,Courier,monospace">ewk_view_user_agent_set()</span> function.</p>
 
 <pre class="prettyprint">
 static Browser_Window *window_create(Evas_Object *opener, int width, int height, Eina_Bool view_mode)