Bug in httpEquiv: (?)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Bug in httpEquiv: (?)

Darius Clarke
InĀ 

httpEquiv: anObject
self attributeAt: #http-equiv put: anObject

The symbol #http-equiv cannot be a symbol.

Should be:

httpEquiv: anObject
self attributeAt: #'http-equiv' put: anObject


Is that right?

Cheers,
Darius


Reply | Threaded
Open this post in threaded view
|

Re: Bug in httpEquiv: (?)

Colin Putney-3
On Tue, Jul 31, 2012 at 11:36 PM, Darius Clarke <[hidden email]> wrote:

> In
>
> httpEquiv: anObject
> self attributeAt: #http-equiv put: anObject
>
> The symbol #http-equiv cannot be a symbol.
>
> Should be:
>
> httpEquiv: anObject
> self attributeAt: #'http-equiv' put: anObject
>
>
> Is that right?

Right. That's generated code, which I guess explains how that happened
in the first place. I'll tweak the generator.

Colin