Skip to content

Latest commit

 

History

History
26 lines (25 loc) · 410 Bytes

Note.md

File metadata and controls

26 lines (25 loc) · 410 Bytes

Note

How to Build Swift-DocC

  1. Change the following code
    Text("Continue", bundle: .module)

to

    Text("Continue")
  1. Save Workspace
  2. Open Terminal
  3. Go to the root path of this repository
  4. Execute the following command
    make docc
  1. Revert the code as follows
    Text("Continue")

to

    Text("Continue", bundle: .module)