Skip to content

Commit

Permalink
Editorial: Remove " from true and false
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankYFTang committed Apr 12, 2024
1 parent 5e1edb2 commit 86f4653
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec.emu
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ contributors: Ujjwal Sharma, Younies Mahmoud
1. Perform ! CreateDataPropertyOrThrow(_nfOpts_, *"minimumFractionDigits"*, _minimumFractionDigits_ ).
1. Perform ! CreateDataPropertyOrThrow(_nfOpts_, *"roundingMode"*, *"trunc"*).
1. Set _done_ to *true*.
1. Let _displayRequired_ be *"false"*.
1. Let _displayRequired_ be *false*.
1. Let _hoursStyle_ be _durationFormat_.[[HoursStyle]].
1. If _unit_ is *"minutes"*, then
1. If _hoursStyle_ is *"numeric"* or *"2-digit"*, then
Expand All @@ -325,8 +325,8 @@ contributors: Ujjwal Sharma, Younies Mahmoud
1. Let _secondsDisplay_ be _durationFormat_.[[SecondsDisplay]].
1. Let _secondsValue_ be _durationFormat_.[[SecondsValue]].
1. If _secondsDisplay_ is *"always"* or _secondsValue_ is not 0, then
1. Set _displayRequired_ to *"true"*.
1. If _value_ is not 0 or _display_ is not *"auto"* or _displayRequired_ is *"true"*, then
1. Set _displayRequired_ to *true*.
1. If _value_ is not 0 or _display_ is not *"auto"* or _displayRequired_ is *true*, then
1. If _displayNegativeSign_ is *true*, then
1. Set _displayNegativeSign_ to *false*.
1. If _value_ is 0 and DurationRecordSign(_duration_) is -1, then
Expand Down

0 comments on commit 86f4653

Please sign in to comment.