Minor comment fixes

Fix one typo, remove a docstring meant for an old function
This commit is contained in:
Mike Colagrosso 2024-01-26 00:25:11 -07:00 committed by Alex Cabal
parent d95d9b3349
commit f50fab37d3

View file

@ -805,7 +805,7 @@ class Artwork extends PropertiesBase{
(select distinct ArtistId from Artworks) (select distinct ArtistId from Artworks)
'); ');
// Update tags for this artworke // Update tags for this artwork
Db::Query(' Db::Query('
DELETE from ArtworkTags DELETE from ArtworkTags
where where
@ -866,10 +866,6 @@ class Artwork extends PropertiesBase{
return $result[0]; return $result[0];
} }
/**
* Looks up an existing artwork regardless of status (unlike GetByUrl()) in order to
* enforce that the Artist UrlName + Artwork UrlName combo is globally unique.
*/
/** /**
* @throws \Exceptions\InvalidArtworkException * @throws \Exceptions\InvalidArtworkException
*/ */