Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo: virual_channel -> virtual_channel #155

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gaia-ccsds-c2a/src/ccsds_c2a/aos.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pub mod space_packet;
pub mod transfer_frame;
pub mod virual_channel;
pub mod virtual_channel;
pub use space_packet::SpacePacket;
pub use transfer_frame::TransferFrame;
pub use virual_channel::VirtualChannel;
pub use virtual_channel::VirtualChannel;
2 changes: 1 addition & 1 deletion tmtc-c2a/src/satellite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use gaia_ccsds_c2a::{
ccsds::{self, aos, tc},
ccsds_c2a::{
self,
aos::{virual_channel::Demuxer, SpacePacket},
aos::{virtual_channel::Demuxer, SpacePacket},
tc::{segment, space_packet},
},
};
Expand Down
Loading