OK, let's start over from scratch. There were some additional problems with those instructions that would have caused you new problems later, and I have now fixed those also:
Delete C:\Users\myusername\Documents\Arduino\hardware\attiny
Create a folder named C:\Users\myusername\Documents\Arduino\hardware\kot0005
Create a folder named C:\Users\myusername\Documents\Arduino\hardware\kot0005\avr
Create a file named C:\Users\myusername\Documents\Arduino\hardware\kot0005\avr\boards.txt
Open C:\Users\myusername\Documents\Arduino\hardware\kot0005\avr\boards.txt in a text editor.
Add the following to the file:
leonardoNB.name=Arduino Leonardo No Bootloader
leonardoNB.upload.tool=arduino:avrdude
leonardoNB.upload.maximum_size=32768
leonardoNB.upload.maximum_data_size=2560
leonardoNB.bootloader.tool=arduino:avrdude
leonardoNB.bootloader.low_fuses=0xFF
leonardoNB.bootloader.high_fuses=0xD7
leonardoNB.bootloader.extended_fuses=0xCB
leonardoNB.bootloader.unlock_bits=0x3F
leonardoNB.bootloader.lock_bits=0x3F
leonardoNB.bootloader.file=empty/empty.hex
leonardoNB.build.mcu=atmega32u4
leonardoNB.build.f_cpu=16000000L
leonardoNB.build.vid=0x2341
leonardoNB.build.pid=0x8036
leonardoNB.build.usb_product="Arduino leonardo"
leonardoNB.build.board=AVR_leonardo
leonardoNB.build.core=arduino:arduino
leonardoNB.build.variant=arduino:leonardo
leonardoNB.build.extra_flags={build.usb_flags}
Save the file.
Create a folder named C:\Users\myusername\Documents\Arduino\hardware\kot0005\avr\bootloaders\empty
Create a file named C:\Users\myusername\Documents\Arduino\hardware\kot0005\avr\bootloaders\empty\empty.hex
Open C:\Users\myusername\Documents\Arduino\hardware\kot0005\avr\bootloaders\empty\empty.hex in a text editor.
Add the following to the file:
:0200000002C03C
:00000001FF
Save the file.
Restart the Arduino IDE if it's running.
Connect your Uno to your Leonardo as shown in the Arduino as ISP tutorial
Connect the USB cable of your Uno to your computer.
Tools > Board > Arduino Uno
Tools > Port > select the port of your Uno
File > Examples > 11.ArduinoISP > ArduinoISP
Sketch > Upload
Wait for the upload to your Uno to finish. Your Uno is now an "Arduino as ISP" programmer.
(In the Arduino IDE) Tools > Board > Arduino Leonardo No Bootloader
Tools > Programmer > Arduino as ISP
Tools > Burn Bootloader
Wait for the burn bootloader process to finish successfully. You have now set the configuration fuses on the ATmega32U4 to not use the bootloader, so you can use the full 32 kB of flash memory on the microcontroller for your sketch.
Open the sketch you want to upload to the Leonardo.
Sketch > Upload Using Programmer
Because of the way I configured the boards.txt, you can actually just do a normal Upload if you prefer and it will have the same effect as Upload Using Programmer.