Skip to content
Open
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 tutorial/exercise_01/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ More information on this topic can be found in our [user guide](http://vunit.git
* Modify `run.py` to add a `tb_lib` library and add all source files in `test/` to that library

``` python
tb_lib = prj.add_library("tb_lib")
tb_lib.add_source_files(join(root, "test", "*.vhd"))
tb_lib = PRJ.add_library("tb_lib")
tb_lib.add_source_files(ROOT / "test" / "*.vhd")
```

* Re-compile:
Expand Down