1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

Update comments

Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
Pascal Bauer 2024-09-24 09:01:25 +02:00 committed by Niklas Eiling
parent 2072775c22
commit debf320428
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
/* Linux/Unix device which represents an IP component of a FPGA.
/* IpDevice: Linux/Unix device which represents an IP component of a fpga
*
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
*
@ -22,7 +22,7 @@ public:
private:
IpDevice() = delete;
IpDevice(const std::filesystem::path valid_path)
IpDevice(const std::filesystem::path valid_path) //! Dont allow unvalidated paths
: PlatformDevice(valid_path){};
public:

View file

@ -1,4 +1,4 @@
/* Platform bus based Linux/Unix device.
/* Platform Device: Platform bus based Linux/Unix device.
*
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
*