Mark Sibly 8 years ago
parent
commit
ca275f807e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      modules/std/audio/audiodata.monkey2

+ 2 - 2
modules/std/audio/audiodata.monkey2

@@ -61,7 +61,7 @@ Class AudioData Extends Resource
 	
 	
 	#rem monkeydoc Sets a sample at a given sample index.
 	#rem monkeydoc Sets a sample at a given sample index.
 
 
-	@index must be in the range [0,Length).
+	`index` must be in the range [0,Length).
 	
 	
 	#end
 	#end
 	Method SetSample( index:Int,sample:Float,channel:Int=0 )
 	Method SetSample( index:Int,sample:Float,channel:Int=0 )
@@ -80,7 +80,7 @@ Class AudioData Extends Resource
 	
 	
 	#rem monkeydoc Gets a sample at a given sample index.
 	#rem monkeydoc Gets a sample at a given sample index.
 	
 	
-	@index must be in the range [0,Length).
+	`index` must be in the range [0,Length).
 	
 	
 	#end
 	#end
 	Method GetSample:Float( index:Int,channel:Int=0 )
 	Method GetSample:Float( index:Int,channel:Int=0 )