<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"	>
<channel>
	<title>Comments on: Rails intro #2: One-to-many relationships</title>
	<atom:link href="http://johannesbrodwall.com/2008/01/28/rails-intro-2-one-to-many-relationships/feed/" rel="self" type="application/rss+xml" />
	<link>http://johannesbrodwall.com/2008/01/28/rails-intro-2-one-to-many-relationships/</link>
	<description>Johannes Brodwall&#039;s Musings on Software Architecture and Programming</description>
	<lastBuildDate>Thu, 29 Jul 2010 15:37:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Johannes Brodwall</title>
		<link>http://johannesbrodwall.com/2008/01/28/rails-intro-2-one-to-many-relationships/comment-page-1/#comment-27761</link>
		<dc:creator>Johannes Brodwall</dc:creator>
		<pubDate>Fri, 07 Mar 2008 09:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.brodwall.com/johannes/blog/2008/01/28/rails-intro-2-one-to-many-relationships/#comment-27761</guid>
		<description>Hi, Keik

I don&#039;t get the same error, and I&#039;m wondering if you might&#039;ve made a mistake in copying the code. The error message is something you get if you say

def method(@param) ...

Or

do &#124;@param&#124; ...

or

{ &#124;@param&#124; ...

Is it possible that you have an extra &quot;(&quot; after &quot;find_article&quot;?</description>
		<content:encoded><![CDATA[<p>Hi, Keik</p>
<p>I don&#8217;t get the same error, and I&#8217;m wondering if you might&#8217;ve made a mistake in copying the code. The error message is something you get if you say</p>
<p>def method(@param) &#8230;</p>
<p>Or</p>
<p>do |@param| &#8230;</p>
<p>or</p>
<p>{ |@param| &#8230;</p>
<p>Is it possible that you have an extra &#8220;(&#8221; after &#8220;find_article&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johannes Brodwall</title>
		<link>http://johannesbrodwall.com/2008/01/28/rails-intro-2-one-to-many-relationships/comment-page-1/#comment-84590</link>
		<dc:creator>Johannes Brodwall</dc:creator>
		<pubDate>Fri, 07 Mar 2008 06:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.brodwall.com/johannes/blog/2008/01/28/rails-intro-2-one-to-many-relationships/#comment-84590</guid>
		<description>Hi, Keik&lt;br&gt;&lt;br&gt;I don&#039;t get the same error, and I&#039;m wondering if you might&#039;ve made a mistake in copying the code. The error message is something you get if you say&lt;br&gt;&lt;br&gt;def method(@param) ...&lt;br&gt;&lt;br&gt;Or&lt;br&gt;&lt;br&gt;do &#124;@param&#124; ...&lt;br&gt;&lt;br&gt;or&lt;br&gt;&lt;br&gt;{ &#124;@param&#124; ...&lt;br&gt;&lt;br&gt;Is it possible that you have an extra &quot;(&quot; after &quot;find_article&quot;?</description>
		<content:encoded><![CDATA[<p>Hi, Keik</p>
<p>I don&#39;t get the same error, and I&#39;m wondering if you might&#39;ve made a mistake in copying the code. The error message is something you get if you say</p>
<p>def method(@param) &#8230;</p>
<p>Or</p>
<p>do |@param| &#8230;</p>
<p>or</p>
<p>{ |@param| &#8230;</p>
<p>Is it possible that you have an extra &#8220;(&#8221; after &#8220;find_article&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keik</title>
		<link>http://johannesbrodwall.com/2008/01/28/rails-intro-2-one-to-many-relationships/comment-page-1/#comment-27666</link>
		<dc:creator>keik</dc:creator>
		<pubDate>Thu, 06 Mar 2008 05:40:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.brodwall.com/johannes/blog/2008/01/28/rails-intro-2-one-to-many-relationships/#comment-27666</guid>
		<description>i get the following error on step 2on updating the controller

app/controllers/comments_controller.rb:89: formal argument cannot be an instance variable

  def find_article
      @article = Article.find(params[:article_id])
  end</description>
		<content:encoded><![CDATA[<p>i get the following error on step 2on updating the controller</p>
<p>app/controllers/comments_controller.rb:89: formal argument cannot be an instance variable</p>
<p>  def find_article<br />
      @article = Article.find(params[:article_id])<br />
  end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keik</title>
		<link>http://johannesbrodwall.com/2008/01/28/rails-intro-2-one-to-many-relationships/comment-page-1/#comment-84589</link>
		<dc:creator>keik</dc:creator>
		<pubDate>Thu, 06 Mar 2008 02:40:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.brodwall.com/johannes/blog/2008/01/28/rails-intro-2-one-to-many-relationships/#comment-84589</guid>
		<description>i get the following error on step 2on updating the controller&lt;br&gt;&lt;br&gt;app/controllers/comments_controller.rb:89: formal argument cannot be an instance variable&lt;br&gt;&lt;br&gt;  def find_article&lt;br&gt;      @article = Article.find(params[:article_id])&lt;br&gt;  end</description>
		<content:encoded><![CDATA[<p>i get the following error on step 2on updating the controller</p>
<p>app/controllers/comments_controller.rb:89: formal argument cannot be an instance variable</p>
<p>  def find_article<br />      @article = Article.find(params[:article_id])<br />  end</p>
]]></content:encoded>
	</item>
</channel>
</rss>
