# File lib/flickr/notes.rb, line 18
        def edit(note,x,y,w,h,text)
                note = note.id if note.class == Flickr::Note
                res = @flickr.call_method('flickr.photos.notes.edit',
                        'note_id' => note, 'note_x' => x, 'note_y' => y,
                        'note_w' => w, 'note_h' => h, 'note_text' => text)
        end