Mark Sibly 8 年之前
父節點
當前提交
ca275f807e
共有 1 個文件被更改,包括 2 次插入2 次删除
  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.
 
-	@index must be in the range [0,Length).
+	`index` must be in the range [0,Length).
 	
 	#end
 	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.
 	
-	@index must be in the range [0,Length).
+	`index` must be in the range [0,Length).
 	
 	#end
 	Method GetSample:Float( index:Int,channel:Int=0 )