Skip to content

Commit 4b1258e

Browse files
authored
Merge pull request #11404 from Calinou/cpu-optimization-fix-code-block
Fix code sample in CPU optimization
2 parents 24c7dba + 3a28ad3 commit 4b1258e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/performance/cpu_optimization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ the following:
101101
update_enemies()
102102

103103
var time_end = Time.get_ticks_usec()
104-
print("update_enemies() took %d microseconds" % time_end - time_start)
104+
print("update_enemies() took %d microseconds" % (time_end - time_start))
105105

106106
.. code-tab:: csharp
107107

0 commit comments

Comments
 (0)