Skip to content

Commit

Permalink
fix: Autocoders: finishPortH.tmpl, clerical error (#875)
Browse files Browse the repository at this point in the history
The template "finishPortH.tmpl" for creating the last part of "[xx]PortAc.hpp", has an obvious comment error. It is not a functional error, but better to be corrected as well.

as an example:

The CyclePortAc.hpp likes this:
```
    /// Input Cycle port description
    /// 
    
    class OutputCyclePort : public Fw::OutputPortBase {
      public: 
        OutputCyclePort(void);
```

--->

```
    /// Output Cycle port description
    /// 
    
    class OutputCyclePort : public Fw::OutputPortBase {
      public: 
        OutputCyclePort(void);
```
  • Loading branch information
coolshell1024 authored Jul 29, 2021
1 parent 764194a commit b47358f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// Input $name port description
/// Output $name port description
/// $desc

class Output${name}Port : public Fw::OutputPortBase {
Expand Down

0 comments on commit b47358f

Please sign in to comment.