API Docs: Small edits to recent commit

- Revert string formatting change
- Add missing text edit
This commit is contained in:
Aaron Carlisle 2020-06-23 17:08:32 -04:00
parent d82c3d8615
commit b0449cac66
2 changed files with 2 additions and 2 deletions

View File

@ -368,4 +368,4 @@ While developing a script it is good to time it to be aware of any changes in pe
# do something...
print("My Script Finished: {:.4f} sec".format(time.time() - time_start))
print("My Script Finished: %.4f sec" % (time.time() - time_start))

View File

@ -359,7 +359,7 @@ INFO_DOCS = (
("info_tips_and_tricks.rst",
"Tips and Tricks: Hints to help you while writing scripts for Blender"),
("info_gotcha.rst",
"Gotcha's: some of the problems you may come up against when writing scripts"),
"Gotcha's: some of the problems you may encounter when writing scripts"),
("change_log.rst", "List of changes since last Blender release"),
)