Fix usage documentation in VideoAnalyzer

The code snippet within the usage documentation comment used the wrong object namespace for the ActiveStorage::Analyzer::VideoAnalyzer
This commit is contained in:
Carlos Ramirez III 2019-01-28 21:13:11 -08:00 committed by GitHub
parent 48a41b544c
commit f70defa1ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,7 +11,7 @@ module ActiveStorage
#
# Example:
#
# ActiveStorage::VideoAnalyzer.new(blob).metadata
# ActiveStorage::Analyzer::VideoAnalyzer.new(blob).metadata
# # => { width: 640.0, height: 480.0, duration: 5.0, angle: 0, display_aspect_ratio: [4, 3] }
#
# When a video's angle is 90 or 270 degrees, its width and height are automatically swapped for convenience.