about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-03-19 17:17:18 -0500
committerGitHub <noreply@github.com>2019-03-19 17:17:18 -0500
commit8c698763579d5cf78094d2d4495c3d801ed0d2e7 (patch)
treeb07ea6dd619942f2ce0c3620a821e3947c1efeff /src/libcore
parenta35cdd4e41a2bec5d8896653f898aaff61cb0106 (diff)
downloadrust-8c698763579d5cf78094d2d4495c3d801ed0d2e7.tar.gz
rust-8c698763579d5cf78094d2d4495c3d801ed0d2e7.zip
Update stable attribute to be since 1.35.0
Co-Authored-By: jtdowney <jdowney@gmail.com>
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter/traits/accum.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/iter/traits/accum.rs b/src/libcore/iter/traits/accum.rs
index b67714ca779..ae51e1bddac 100644
--- a/src/libcore/iter/traits/accum.rs
+++ b/src/libcore/iter/traits/accum.rs
@@ -291,7 +291,7 @@ where
     }
 }
 
-#[stable(feature = "iter_arith_traits_option", since = "1.34.0")]
+#[stable(feature = "iter_arith_traits_option", since = "1.35.0")]
 impl<T, U> Sum<Option<U>> for Option<T>
 where
     T: Sum<U>,
@@ -321,7 +321,7 @@ where
     }
 }
 
-#[stable(feature = "iter_arith_traits_option", since = "1.34.0")]
+#[stable(feature = "iter_arith_traits_option", since = "1.35.0")]
 impl<T, U> Product<Option<U>> for Option<T>
 where
     T: Product<U>,