diff --git a/spec/abstractops.html b/spec/abstractops.html
index 8ce2455ce3..cf6a027922 100644
--- a/spec/abstractops.html
+++ b/spec/abstractops.html
@@ -578,8 +578,7 @@
ToRelativeTemporalObject ( _options_ )
1. Assert: Type(_options_) is Object.
1. Let _value_ be ? Get(_options_, *"relativeTo"*).
- 1. If _value_ is *undefined*, then
- 1. Return _value_.
+ 1. If _value_ is *undefined*, return *undefined*.
1. Let _offsetBehaviour_ be ~option~.
1. Let _matchBehaviour_ be ~match exactly~.
1. If Type(_value_) is Object, then
diff --git a/spec/intl.html b/spec/intl.html
index c89fb1f4a5..dd8d07f9ae 100644
--- a/spec/intl.html
+++ b/spec/intl.html
@@ -1417,7 +1417,7 @@
1. Assert: Type(_calendar_) is Object.
1. Let _result_ be ? Invoke(_calendar_, *"era"*, « _dateLike_ »).
- 1. If _result_ is *undefined*, return _result_.
+ 1. If _result_ is *undefined*, return *undefined*.
1. If Type(_result_) is not String, throw a *TypeError* exception.
1. Return _result_.
@@ -1437,7 +1437,7 @@
1. Assert: Type(_calendar_) is Object.
1. Let _result_ be ? Invoke(_calendar_, *"eraYear"*, « _dateLike_ »).
- 1. If _result_ is *undefined*, return _result_.
+ 1. If _result_ is *undefined*, return *undefined*.
1. If Type(_result_) is not Number, throw a *TypeError* exception.
1. If IsIntegralNumber(_result_) is *false*, throw a *RangeError* exception.
1. Return ℝ(_result_).