Skip to content

Commit

Permalink
Fixed wrong link in documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
pellico committed May 2, 2024
1 parent 01f7c80 commit efe92a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ an optional feature flag `tracing`. Enabling the feature provides the following
additional functionalities:
- an interface where register accesses can be piped though, enabling
developers to log accesses to registers or even mock registers outright.
An implementaion of that interface is provided by [`regmock-rs`](https://bitbucket.vih.infineon.com/projects/OXIDE/repos/regmock-rs/browse).
An implementaion of that interface is provided by [`regmock-rs`](https://github.com/Infineon/regmock-rs).
- a special `RegisterValue` trait that allows constructing values of
registers from integers.
- an additional `insanely_unsafe` module which allows reading and writing, write-only and
Expand All @@ -375,7 +375,7 @@ additional functionalities:
### Examples
Below, some simple examples on how to use the tracing APIs are shown.
For a complete example of how to use the tracing features for
e.g. unittesting see the documentation of [`regmock-rs`](https://bitbucket.vih.infineon.com/projects/OXIDE/repos/regmock-rs/browse).
e.g. unittesting see the documentation of [`regmock-rs`](https://github.com/Infineon/regmock-rs).

#### Construcing a register value from a raw value with tracing
When implementing tests using the tracing feature we want to be
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@
//! additional functionalities:
//! - an interface where register accesses can be piped though, enabling
//! developers to log accesses to registers or even mock registers outright.
//! An implementaion of that interface is provided by [`regmock-rs`](https://bitbucket.vih.infineon.com/projects/OXIDE/repos/regmock-rs/browse).
//! An implementaion of that interface is provided by [`regmock-rs`](https://github.com/Infineon/regmock-rs).
//! - a special `RegisterValue` trait that allows constructing values of
//! registers from integers.
//! - an additional `insanely_unsafe` module which allows reading and writing, write-only and
Expand All @@ -373,7 +373,7 @@
//! ## Examples
//! Below, some simple examples on how to use the tracing APIs are shown.
//! For a complete example of how to use the tracing features for
//! e.g. unittesting see the documentation of [`regmock-rs`](https://bitbucket.vih.infineon.com/projects/OXIDE/repos/regmock-rs/browse).
//! e.g. unittesting see the documentation of [`regmock-rs`](https://github.com/Infineon/regmock-rs).
//!
//! ### Construcing a register value from a raw value with tracing
//! When implementing tests using the tracing feature we want to be
Expand Down

0 comments on commit efe92a2

Please sign in to comment.