What I can see in the server access logs is that your browser submitted the comment edit multiple times (simultaneously). The first submission returned the "too late to edit" error; the subsequent submissions were then throttled, because you can only submit once every five seconds.
Since only the latest error message is displayed, the "too late to edit" error popup just existed for a split second, only to be immediately replaced by the "slow down, cowboy" error.
This sounds a lot like multiple event handlers being bound, each doing the same thing. And I have indeed found a way to cause this; maybe you can confirm that this is what happened:
When you start editing a comment, then cancel, then start editing again, this would each time bind another event handler that will eventually submit an edit to the server. I assume you had cancelled a previous edit to the comment before restarting to edit?
This has probably happened to lots of people over time; as far as I can see, this bug has existed ever since comment editing was enabled in December of 2009. This just got unnoticed because a) edit/cancel/edit is probably rare, and b) if the first edit submission is successful (which would be the usual case), the full comment thread is removed and replaced with the updated version, and since the error messages DOM-wise are descendents of the comment list, they get removed alongside, and thus weren't noticed.
This event handler rebinding is fixed in the next build.
.replace("/edit/ig","vote")– Manishearth Apr 13 '12 at 7:11