Bug 1353202 - Fix typo in comment in Servo_AnimationCompose draft
authorBrian Birtles <birtles@gmail.com>
Mon, 22 May 2017 16:16:04 +0900
changeset 582327 244c692aedbf78fc8fcb75e050754c4ca2738e93
parent 582326 85caa42ac87184e23fe49e1946f98abd73425c40
child 582328 d30b2e9b63c5156e90be50681c6fcc9f49690380
push id60038
push userbbirtles@mozilla.com
push dateMon, 22 May 2017 07:45:43 +0000
bugs1353202
milestone55.0a1
Bug 1353202 - Fix typo in comment in Servo_AnimationCompose MozReview-Commit-ID: DeQsUFMxMsW
servo/ports/geckolib/glue.rs
--- a/servo/ports/geckolib/glue.rs
+++ b/servo/ports/geckolib/glue.rs
@@ -360,17 +360,17 @@ pub extern "C" fn Servo_AnimationCompose
         None
     };
 
     if need_underlying_value && underlying_value.is_none() {
         warn!("Underlying value should be valid when we expect to use it");
         return;
     }
 
-    // Temporaries used in the following if-block whose lifetimes we need to prlong.
+    // Temporaries used in the following if-block whose lifetimes we need to prolong.
     let raw_from_value;
     let from_composite_result;
     let from_value = if !segment.mFromValue.mServo.mRawPtr.is_null() {
         raw_from_value = unsafe { &*segment.mFromValue.mServo.mRawPtr };
         match segment.mFromComposite {
             CompositeOperation::Add => {
                 let value_to_composite = AnimationValue::as_arc(&raw_from_value).as_ref();
                 from_composite_result = underlying_value.as_ref().unwrap().add(value_to_composite);