Misprint in SDL_image docs?

Sorry if it’s insignificant, but I found one misprint in SDL_image 1.2.3
documentation: there is example in description of IMG_LoadTyped_RW:

// load sample.tga into image
SDL_Surface *image;
image=IMG_Load_RW(SDL_RWFromFile(“sample.tga”, “rb”), 1, “TGA”);
if(!image) {
printf(“IMG_Load_RW: %s\n”, IMG_GetError());
// handle error
}

I think must be

// load sample.tga into image
SDL_Surface *image;
image=IMG_LoadTyped_RW(SDL_RWFromFile(“sample.tga”, “rb”), 1, “TGA”);
if(!image) {
printf(“IMG_LoadTyped_RW: %s\n”, IMG_GetError());
// handle error
}

Best Regards,
ALakazam [ @ALakazam ]
Oh, Elbereth, Gilthoniel!