diff --git a/quad/doc/Creating_and_maintaining_new_Vivado_project.md b/quad/doc/Creating_and_maintaining_new_Vivado_project.md
index 562466dba065bf826d360cb3066dd6015d157279..4818fe1ae2dc7e531c8e225864ac74eaaaeb057e 100644
--- a/quad/doc/Creating_and_maintaining_new_Vivado_project.md
+++ b/quad/doc/Creating_and_maintaining_new_Vivado_project.md
@@ -13,7 +13,7 @@ This is done by removeing the follwoing lines from the .tcl file
 ```
     # Import local files from the original project
     set files [list \
-     [file normalize "${origin_dir}/PWM_Recorder_Tests/PWM_Recorder_Tests.srcs/sources_1/bd/design_1/hdl/design_1_wrapper.vhd" ]\
+     [file normalize "${origin_dir}/<project_name>/<project_name>.srcs/sources_1/bd/design_1/hdl/design_1_wrapper.vhd" ]\
     ]
     set imported_files [import_files -fileset sources_1 $files]
 
@@ -33,7 +33,7 @@ and adding the following at the end of the file:
 Additionally, you need to make the constraints file a remote source, not a local one.
 Replace
 ````
-set file "[file normalize "$origin_dir/PWM_Recorder_Tests/src/constrs/Zybo-Z7-Master.xdc"]"
+set file "[file normalize "$origin_dir/<project_name>/src/constrs/Zybo-Z7-Master.xdc"]"
 set file_imported [import_files -fileset constrs_1 [list $file]]
 set file "constrs/Zybo-Z7-Master.xdc"
 set file_obj [get_files -of_objects [get_filesets constrs_1] [list "*$file"]]