diff options
Diffstat (limited to 'includes/content/ContentHandler.php')
-rw-r--r-- | includes/content/ContentHandler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/content/ContentHandler.php b/includes/content/ContentHandler.php index a5f9ad98bea6..7f11919fbe34 100644 --- a/includes/content/ContentHandler.php +++ b/includes/content/ContentHandler.php @@ -326,7 +326,7 @@ abstract class ContentHandler { abstract public function serializeContent( Content $content, $format = null ); /** - * Applies transformations on export (returns the blob unchanged per default). + * Applies transformations on export (returns the blob unchanged by default). * Subclasses may override this to perform transformations such as conversion * of legacy formats or filtering of internal meta-data. * @@ -356,7 +356,7 @@ abstract class ContentHandler { abstract public function unserializeContent( $blob, $format = null ); /** - * Apply import transformation (per default, returns $blob unchanged). + * Apply import transformation (by default, returns $blob unchanged). * This gives subclasses an opportunity to transform data blobs on import. * * @stable to override |