Skip to content

Commit

Permalink
ci: incr timeout for release, fix a typo (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma233 committed Feb 2, 2024
1 parent cfd30b3 commit a214695
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
build_macos:
needs: gen_version
name: build macos version binary
timeout-minutes: 30
timeout-minutes: 60
runs-on: macos-latest
strategy:
matrix:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
build_linux:
needs: gen_version
name: build linux version binary
timeout-minutes: 30
timeout-minutes: 60
runs-on: "ubuntu-latest"
strategy:
matrix:
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
build_browser:
needs: gen_version
name: build browser version binary
timeout-minutes: 30
timeout-minutes: 60
runs-on: "ubuntu-latest"
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions crates/core/src/dht/did.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![warn(missing_docs)]

//! This module defines distributed idendity for rings network.
//! This module defines distributed identity for rings network.
//! The Did of rings network is also a abstract Ring structure of abstract algebra.
//! The Did is implemented with H160, which is a 160 bits, which can present as:
//!
Expand Down Expand Up @@ -60,7 +60,7 @@ impl std::fmt::Display for Did {
}
}

/// Bias Did is a special Did which set origin Did's idendity to bias
/// Bias Did is a special Did which set origin Did's identity to bias
/// The underlying concept of BiasId is that while we cannot determine the order between two Dids, such as `did_a` and `did_b`,
/// we can establish a reference Did, referred to as `did_x`, and compare which one is closer to it. Hence, we introduced BiasId,
/// where a bias value is applied. Essentially, it considers the midpoint `x` as the zero point within the Ring algebraic structure for observation.
Expand Down

0 comments on commit a214695

Please sign in to comment.