diff options
| author | mergify[bot] | 2022-04-18 17:13:16 +0000 |
|---|---|---|
| committer | GitHub | 2022-04-18 17:13:16 +0000 |
| commit | 17c930506046bc59f8a13a0c82734e7334b27613 (patch) | |
| tree | 97a911838c706bb1ca1c4a056a5c395124770030 /core | |
| parent | 7fdce0fa158c7d15bc7984ba08ca8692134d3971 (diff) | |
Fix small typos in doc comment (#2490) (#2492)
(cherry picked from commit 52165fe2796d08c664069c148868aedc64ea3777)
Co-authored-by: Lucheng Zhang <79909456+geekLucian@users.noreply.github.com>
Diffstat (limited to 'core')
| -rw-r--r-- | core/src/main/scala/chisel3/Bits.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/scala/chisel3/Bits.scala b/core/src/main/scala/chisel3/Bits.scala index 4133592f..a135a8e5 100644 --- a/core/src/main/scala/chisel3/Bits.scala +++ b/core/src/main/scala/chisel3/Bits.scala @@ -1324,7 +1324,7 @@ sealed class Bool() extends UInt(1.W) with Reset { /** Logical or operator * * @param that a hardware $coll - * @return the lgocial or of this $coll and `that` + * @return the logical or of this $coll and `that` * @note this is equivalent to [[Bool!.|(that:chisel3\.Bool)* Bool.|)]] * @group Logical */ @@ -1336,7 +1336,7 @@ sealed class Bool() extends UInt(1.W) with Reset { /** Logical and operator * * @param that a hardware $coll - * @return the lgocial and of this $coll and `that` + * @return the logical and of this $coll and `that` * @note this is equivalent to [[Bool!.&(that:chisel3\.Bool)* Bool.&]] * @group Logical */ |
