对于两种给定的方法:
/**
* Adds a [DataItem] to the Android Wear network. The updated item is synchronized across all devices.
*/
fun putItem(){ .... }
/**
* "same KDOC here with above"
*/
fun putItem(putRequest: PutDataRequest){ .... }
是否有可能复制/链接第二种方法的文档与第一种方法相同?
手动复制粘贴KDOC并不是那么好,因为如果你更新其中一个,那么很有可能第二个意外地过时。