<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -19,7 +19,7 @@ h3. Generating the system
 
 The plugin includes a generator to create a model based on ActiveResource
 
-  ./script/generate youtube_model &lt;ModelName&gt;
+  ./script/generate youtube_model ModelName
 
 This generator will create four files:
 * An ActiveResource based model under app/models directory.
@@ -35,9 +35,10 @@ h3. AuthSub for web applications
 	
 	The token obtained after doing authorisation process will become a session token. So we will set the session parameter to 1 in yaml	configuration file. This token is used to upload, edit and delete video.
 
-	#app/views/videos/index.html.erb
-
-	Please Click &lt;%= link_to 'here', youtube_auth_url(authorise_videos_url) %&gt; first to authorise access to your youtube account.&lt;br/&gt;
+  &lt;pre&gt;&lt;code&gt;
+  #app/views/videos/index.html.erb
+	Please Click &lt;%= link_to 'here', youtube_auth_url(authorise_videos_url) %&gt; first to authorise access to your youtube account.
+	&lt;/code&gt;&lt;/pre&gt;
 
 	An authorise method will be added to make the single use token to a session token.
 
@@ -68,7 +69,7 @@ h3. Listing videos
   
 To get all the videos uploaded by a user you can use the method @uploaded_by_user@ passing the session[:token] we saved during authorisation process
 
-  YouTube.uploaded_by_user(session[:token])
+  @YouTube.uploaded_by_user(session[:token])@
 
   &lt;pre&gt;&lt;code&gt;
   #VideosController
@@ -82,7 +83,6 @@ To get all the videos uploaded by a user you can use the method @uploaded_by_use
   end
 	
   #app/views/videos/index.html.erb
-
   &lt;% if session[:token] %&gt;
   &lt;%= image_tag @youtube.logo %&gt;
 
@@ -101,9 +101,7 @@ To get all the videos uploaded by a user you can use the method @uploaded_by_use
   &lt;% end %&gt;
   &lt;% end %&gt;
 
-
   #app/views/videos/show.html.erb
-
 	&lt;h1&gt;&lt;%= @video.title %&gt;&lt;/h1&gt;
 	by &lt;%= link_to @video.author.name, &quot;http://youtube.com/#{@video.author.name}&quot; %&gt;
   &lt;%= youtube_embed @video %&gt;
@@ -183,7 +181,7 @@ h3. Updating Videos
 	
 To get the videos updated by a user you can use the method @update_video@ passing the id of that video, session[:token] and params hash
 
-	 YouTube.update_video(params[:id], session[:token], params[:you_tube_entry])
+	 @YouTube.update_video(params[:id], session[:token], params[:you_tube_entry])@
 	
   &lt;pre&gt;&lt;code&gt;
   #VideosController
@@ -234,7 +232,7 @@ h3. Deleting Videos
 
 To delete the videos of any user you can use the method @delete_video@ passing the id of that video and session[:token]
 
-  YouTube.delete_video(params[:id], session[:token])
+  @YouTube.delete_video(params[:id], session[:token])@
 
   &lt;pre&gt;&lt;code&gt;
   #VideosController</diff>
      <filename>README.textile</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>072d2965fef88ed6d9bfd39ab0ec902572ba79d5</id>
    </parent>
  </parents>
  <author>
    <name>edgarjs</name>
    <email>edgar.js@gmail.com</email>
  </author>
  <url>http://github.com/edgarjs/youtube-model/commit/178340bc008652194fafe884543696737b4c5c77</url>
  <id>178340bc008652194fafe884543696737b4c5c77</id>
  <committed-date>2009-07-24T07:46:31-07:00</committed-date>
  <authored-date>2009-07-24T07:46:31-07:00</authored-date>
  <message>Changes to readme</message>
  <tree>5ae2fbde76963bc2350596d980c94be6e76b349f</tree>
  <committer>
    <name>edgarjs</name>
    <email>edgar.js@gmail.com</email>
  </committer>
</commit>
