Browse Source

Merge pull request #80608 from emmanuel-ferdman/wip

docs: Fix link to two's complement wiki page
Rémi Verschelde 2 years ago
parent
commit
bbefba0264
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/classes/int.xml

+ 1 - 1
doc/classes/int.xml

@@ -390,7 +390,7 @@
 		<operator name="operator ~">
 			<return type="int" />
 			<description>
-				Performs the bitwise [code]NOT[/code] operation on the [int]. Due to [url=https://en.wikipedia.org/wiki/Two%27s_complement/]2's complement[/url], it's effectively equal to [code]-(int + 1)[/code].
+				Performs the bitwise [code]NOT[/code] operation on the [int]. Due to [url=https://en.wikipedia.org/wiki/Two%27s_complement]2's complement[/url], it's effectively equal to [code]-(int + 1)[/code].
 				[codeblock]
 				print(~4) # Prints -5
 				print(~(-7)) # Prints 6