[docs] Fixed a typo in bigint.dart operator | documentation

Closes https://github.com/dart-lang/sdk/pull/45010
https://github.com/dart-lang/sdk/pull/45010

GitOrigin-RevId: b27d0bd0bf25a08909502e37fc86abd00bef82b9
Change-Id: Icf84e3b1ba13002d6dff992f42be55f1a808a536
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/185040
Commit-Queue: Vyacheslav Egorov <vegorov@google.com>
Reviewed-by: Vyacheslav Egorov <vegorov@google.com>
This commit is contained in:
ffabss 2021-02-17 09:15:19 +00:00 committed by commit-bot@chromium.org
parent 0897b95f3c
commit c0d688e139

View file

@ -141,7 +141,7 @@ abstract class BigInt implements Comparable<BigInt> {
/// of `this` and [other]
///
/// If both operands are non-negative, the result is non-negative,
/// otherwise the result us negative.
/// otherwise the result is negative.
BigInt operator |(BigInt other);
/// Bit-wise exclusive-or operator.